:root {
  --stonecat-bg: #fbf9f7;
  --stonecat-mint: #a9fbe6;
  --stonecat-nav-bg: #e2f9ff;
  --stonecat-navy: #1b2d6b;
  --stonecat-navy-dark: #002755;
  --stonecat-cyan: #56ddf2;
  --stonecat-white: #ffffff;
  --stonecat-highlight: #2ac0b8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: var(--stonecat-bg);
  color: var(--stonecat-navy);
}

a { color: inherit; }

/* HEADER */

.stonecat-header {
  width: 100%;
  background: var(--stonecat-bg);
  position: relative;
  z-index: 50;
}

.stonecat-topbar {
  width: 100%;
  height: 30px;
  background: var(--stonecat-mint);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 80px;
}

.stonecat-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  color: var(--stonecat-navy);
  white-space: nowrap;
}

.stonecat-topbar__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.stonecat-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 174px;
  padding: 30px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stonecat-logo {
  display: inline-flex;
  width: 182px;
  height: 56px;
  text-decoration: none;
}

.stonecat-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stonecat-nav {
  margin-top: 30px;
  width: auto;
  max-width: 100%;
}

.stonecat-nav__list {
  list-style: none;
  margin: 0;
  padding: 16px 44px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: var(--stonecat-nav-bg);
  border-radius: 999px;
  box-shadow:
    0 2px 2px rgba(27, 45, 107, 0.05),
    0 7px 4px rgba(27, 45, 107, 0.05),
    0 15px 5px rgba(27, 45, 107, 0.03),
    0 26px 6px rgba(27, 45, 107, 0.01);
}

.stonecat-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--stonecat-navy);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.stonecat-nav__list a:hover { opacity: 0.75; }

.stonecat-nav__academy {
  gap: 8px;
  min-width: 190px;
  height: 24px;
  color: var(--stonecat-navy);
  transform: translateY(3px);
}

.stonecat-nav__academy-stack {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 24px;
  flex: 0 0 160px;
}

.stonecat-nav__academy-bg,
.stonecat-nav__academy-fg {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: 17px;
  line-height: 24px;
  font-weight: 900;
  color: var(--stonecat-white);
  white-space: nowrap;
  paint-order: stroke fill;
}

.stonecat-nav__academy-bg {
  -webkit-text-stroke: 5px var(--stonecat-cyan);
  text-stroke: 5px var(--stonecat-cyan);
}

.stonecat-nav__academy-fg {
  -webkit-text-stroke: 2.6px var(--stonecat-navy-dark);
  text-stroke: 2.6px var(--stonecat-navy-dark);
}

.stonecat-nav__academy svg {
  width: 24px;
  height: 24px;
  color: var(--stonecat-navy);
  flex: 0 0 24px;
  transform: translateY(0.5px);
}

.stonecat-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 34px;
  right: 20px;
}

.stonecat-menu-button span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px 0;
  background: var(--stonecat-navy);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.stonecat-menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.stonecat-menu-button.is-open span:nth-child(2) { opacity: 0; }

.stonecat-menu-button.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */

.stonecat-hero {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 622px;
  overflow: hidden;
  background: var(--stonecat-bg);
}

.stonecat-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stonecat-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.stonecat-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  display: block;
}

.stonecat-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1448px;
  min-height: 622px;
  margin: 0 auto;
  padding: 50px 58px 40px;
  display: flex;
  align-items: flex-start;
}

.stonecat-hero__content {
  width: 100%;
  max-width: 788px;
}

.stonecat-hero__title {
  margin: 0 0 40px;
  max-width: 788px;
  font-size: clamp(50px, 4.45vw, 64px);
  line-height: 1.2;
  font-weight: 900;
  color: var(--stonecat-navy);
  letter-spacing: -0.025em;
}

.stonecat-hero__title-line { display: block; }

.stonecat-hero__title-highlight {
  color: var(--stonecat-highlight);
  white-space: nowrap;
}

.stonecat-hero__description {
  margin: 0 0 32px;
  max-width: 1120px;
  font-size: 20px;
  line-height: 1.625;
  font-weight: 700;
  color: var(--stonecat-navy);
}

.stonecat-hero__actions {
  display: flex;
  align-items: center;
  gap: 68px;
  flex-wrap: wrap;
}

.stonecat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: var(--stonecat-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.stonecat-button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.stonecat-button--primary {
  min-width: 198px;
  height: 59px;
  padding: 14px 32px;
  background: var(--stonecat-mint);
  border: 2px solid var(--stonecat-navy);
}

.stonecat-button--secondary {
  min-width: 295px;
  height: 55px;
  padding: 14px 32px;
  gap: 8px;
  background: var(--stonecat-white);
  border: 2px solid transparent;
}

.stonecat-button__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

/* RESPONSIVE */

@media (max-width: 1360px) {
  .stonecat-nav__list {
    gap: 26px;
    padding: 16px 30px;
  }

  .stonecat-nav__list a { font-size: 15px; }

  .stonecat-hero__container {
    padding-left: 42px;
    padding-right: 42px;
  }

  .stonecat-hero__content { max-width: 720px; }

  .stonecat-hero__title {
    font-size: clamp(48px, 4.45vw, 60px);
  }
}

@media (max-width: 1200px) {
  .stonecat-topbar { padding-right: 40px; }

  .stonecat-nav__list {
    gap: 20px;
    padding: 16px 24px;
  }

  .stonecat-nav__list a { font-size: 14px; }

  .stonecat-nav__academy { min-width: 182px; }

  .stonecat-nav__academy-stack {
    width: 154px;
    flex-basis: 154px;
  }

  .stonecat-nav__academy-bg,
  .stonecat-nav__academy-fg {
    font-size: 16px;
  }

  .stonecat-hero {
    min-height: 560px;
  }

  .stonecat-hero__container {
    min-height: 560px;
    padding: 46px 34px 34px;
  }

  .stonecat-hero__content { max-width: 660px; }

  .stonecat-hero__title {
    margin-bottom: 34px;
    font-size: clamp(44px, 4.65vw, 56px);
  }

  .stonecat-hero__description {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.5;
  }

  .stonecat-hero__actions { gap: 36px; }
}

@media (max-width: 1024px) {
  .stonecat-topbar {
    justify-content: center;
    padding: 0 16px;
  }

  .stonecat-topbar__link { font-size: 12px; }

  .stonecat-header__inner {
    min-height: 118px;
    padding: 20px 20px 8px;
  }

  .stonecat-logo {
    width: 150px;
    height: 46px;
  }

  .stonecat-menu-button {
    display: block;
    top: 18px;
    right: 18px;
  }

  .stonecat-nav {
    width: 100%;
    margin-top: 16px;
  }

  .stonecat-nav__list {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
    border-radius: 24px;
  }

  .stonecat-nav__list.is-open { display: flex; }

  .stonecat-nav__list li { width: 100%; }

  .stonecat-nav__list a {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
  }

  .stonecat-nav__academy {
    justify-content: space-between !important;
    min-width: 100%;
    transform: none;
  }

  .stonecat-nav__academy-stack {
    width: 160px;
    flex-basis: 160px;
  }

  .stonecat-hero {
    min-height: 610px;
  }

  .stonecat-hero__bg-image {
    object-position: 72% center;
  }

  .stonecat-hero__container {
    min-height: 610px;
    padding: 18px 24px 44px;
  }

  .stonecat-hero__content { max-width: 620px; }

  .stonecat-hero__title {
    margin-bottom: 24px;
    font-size: 43px;
    line-height: 1.12;
  }

  .stonecat-hero__description {
    margin-bottom: 24px;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.45;
  }

  .stonecat-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .stonecat-button {
    width: 100%;
    min-height: 52px;
    height: auto;
    font-size: 17px;
    line-height: 1.2;
    padding: 12px 22px;
  }

  .stonecat-button--primary,
  .stonecat-button--secondary {
    min-width: 0;
  }

  .stonecat-button__icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 768px) {
  .stonecat-header__inner {
    min-height: 108px;
    padding: 18px 20px 6px;
  }

  .stonecat-logo {
    width: 136px;
    height: 42px;
  }

  .stonecat-hero {
    min-height: 640px;
  }

  .stonecat-hero__bg-image {
    object-position: 74% center;
  }

  .stonecat-hero__container {
    min-height: 640px;
    padding: 12px 22px 42px;
  }

  .stonecat-hero__content { max-width: 100%; }

  .stonecat-hero__title {
    font-size: 39px;
    margin-bottom: 22px;
  }

  .stonecat-hero__description {
    font-size: 16px;
    margin-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .stonecat-header__inner {
    min-height: 100px;
    padding: 16px 18px 4px;
  }

  .stonecat-logo {
    width: 120px;
    height: 38px;
  }

  .stonecat-hero {
    min-height: 620px;
  }

  .stonecat-hero__bg-image {
    object-position: 76% center;
  }

  .stonecat-hero__container {
    min-height: 620px;
    padding: 8px 20px 40px;
  }

  .stonecat-hero__title {
    font-size: 31px;
    line-height: 1.14;
    margin-bottom: 20px;
  }

  .stonecat-hero__description {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 390px) {
  .stonecat-topbar__link {
    font-size: 11px;
    gap: 6px;
  }

  .stonecat-topbar__icon {
    width: 20px;
    height: 20px;
  }

  .stonecat-hero__title {
    font-size: 29px;
    line-height: 1.12;
  }

  .stonecat-hero__description {
    font-size: 14px;
    line-height: 1.42;
  }

  .stonecat-button {
    font-size: 16px;
  }
}


/* ============================================
   V08 - MOBILE HERO IMAGE OVERRIDE
   ============================================ */

@media (max-width: 768px) {
  .stonecat-hero__bg-image {
    object-position: center center;
  }
}

@media (max-width: 480px) {
  .stonecat-hero__bg-image {
    object-position: center center;
  }
}


/* ============================================
   BLOQUE 03 - EL PROBLEMA
   ============================================ */

.stonecat-problema {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 72px 24px 80px;
  background: linear-gradient(
    180deg,
    #e2f9ff 0%,
    #ffffff 38%,
    #ffffff 100%
  );
}

.stonecat-problema__container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.stonecat-problema__title {
  margin: 0 auto 60px;
  max-width: 872px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -0.004em;
  color: var(--stonecat-navy);
}

.stonecat-problema__title span {
  display: block;
}

.stonecat-problema__description {
  margin: 0 auto 50px;
  max-width: 872px;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 500;
  color: #1a2332;
}

.stonecat-problema__figure {
  width: min(100%, 608px);
  margin: 0 auto 45px;
}

.stonecat-problema__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-problema__issues {
  list-style: none;
  margin: 0 auto 35px;
  padding: 0;
  max-width: 940px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #000000;
}

.stonecat-problema__issues li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.stonecat-problema__issues span {
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #fa0050;
}

.stonecat-problema__conclusion {
  margin: 0 auto;
  max-width: 913px;
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.16;
  font-weight: 800;
  text-align: center;
}

.stonecat-problema__conclusion strong {
  display: block;
  color: var(--stonecat-navy);
  font-weight: 800;
}

.stonecat-problema__conclusion span {
  display: block;
  color: #03ada4;
}

/* ============================================
   PROBLEMA RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .stonecat-problema {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .stonecat-problema__title {
    margin-bottom: 50px;
  }

  .stonecat-problema__description {
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.6;
  }

  .stonecat-problema__figure {
    width: min(100%, 540px);
  }
}

@media (max-width: 768px) {
  .stonecat-problema {
    padding: 44px 22px 54px;
  }

  .stonecat-problema__title {
    margin-bottom: 30px;
    font-size: 32px;
    line-height: 1.2;
  }

  .stonecat-problema__description {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.62;
  }

  .stonecat-problema__figure {
    width: min(100%, 400px);
    margin-bottom: 30px;
  }

  .stonecat-problema__issues {
    margin-bottom: 32px;
    gap: 8px 14px;
    font-size: 16px;
    line-height: 1.45;
  }

  .stonecat-problema__issues span {
    font-size: 18px;
  }

  .stonecat-problema__conclusion {
    font-size: 24px;
    line-height: 1.25;
  }
}

@media (max-width: 480px) {
  .stonecat-problema {
    padding: 36px 20px 46px;
  }

  .stonecat-problema__title {
    margin-bottom: 24px;
    font-size: 28px;
  }

  .stonecat-problema__description {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .stonecat-problema__figure {
    width: min(100%, 330px);
    margin-bottom: 28px;
  }

  .stonecat-problema__issues {
    justify-content: flex-start;
    max-width: 330px;
    font-size: 15px;
  }

  .stonecat-problema__conclusion {
    font-size: 21px;
    line-height: 1.3;
  }
}


/* ============================================
   V10 - AJUSTES FINOS SECCIÓN EL PROBLEMA
   ============================================ */

.stonecat-problema {
  padding-top: 56px;
  padding-bottom: 64px;
}

.stonecat-problema__title {
  margin-bottom: 36px;
  max-width: 980px;
}

.stonecat-problema__title-line {
  display: block;
}

.stonecat-problema__title-nowrap {
  white-space: nowrap;
}

.stonecat-problema__description {
  margin-bottom: 28px;
}

.stonecat-problema__figure {
  margin-bottom: 28px;
}

.stonecat-problema__issues {
  max-width: 980px;
  margin-bottom: 26px;
  justify-content: center;
  text-align: center;
  gap: 10px 18px;
}

.stonecat-problema__issues li {
  text-align: center;
}

.stonecat-problema__conclusion {
  text-align: center;
}

@media (max-width: 768px) {
  .stonecat-problema {
    padding: 36px 22px 42px;
  }

  .stonecat-problema__title {
    margin-bottom: 24px;
  }

  .stonecat-problema__description {
    margin-bottom: 22px;
  }

  .stonecat-problema__figure {
    margin-bottom: 22px;
  }

  .stonecat-problema__issues {
    margin-bottom: 22px;
    justify-content: center;
    gap: 10px 18px;
  }

  .stonecat-problema__conclusion {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .stonecat-problema {
    padding: 30px 20px 38px;
  }

  .stonecat-problema__title {
    margin-bottom: 20px;
  }

  .stonecat-problema__description {
    margin-bottom: 20px;
  }

  .stonecat-problema__figure {
    margin-bottom: 20px;
  }

  .stonecat-problema__issues {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
    justify-content: center;
    text-align: center;
    gap: 10px 16px;
  }

  .stonecat-problema__conclusion {
    max-width: 330px;
    font-size: 20px;
    line-height: 1.28;
  }
}


/* ============================================
   V11 - AJUSTES TÍTULO Y PÁRRAFO EN EL PROBLEMA
   ============================================ */

.stonecat-problema__description {
  text-align: center;
}

.stonecat-problema__description-line {
  display: block;
}

.stonecat-problema__description-line--result {
  margin-top: 10px;
}

@media (min-width: 769px) {
  .stonecat-problema__title-line--mobile-nowrap {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .stonecat-problema__description-line--result {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .stonecat-problema__title-line--mobile-nowrap {
    white-space: nowrap;
  }

  .stonecat-problema__title {
    font-size: 26px;
    line-height: 1.18;
  }

  .stonecat-problema__description-line--result {
    margin-top: 6px;
  }
}

@media (max-width: 390px) {
  .stonecat-problema__title {
    font-size: 24px;
  }
}

/* ============================================
   V12 - BLOQUE 04: NUESTRA SOLUCIÓN
   ============================================ */

.stonecat-solution {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 72px 24px 88px;
  background: #ffffff;
  color: #1a2332;
}

.stonecat-solution__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.stonecat-solution__title {
  width: min(100%, 996px);
  margin: 0 auto 54px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.004em;
  color: var(--stonecat-navy);
  text-align: center;
}

.stonecat-solution__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(560px, 1.15fr);
  align-items: center;
  gap: 52px;
}

.stonecat-solution__copy {
  width: 100%;
  max-width: 568px;
}

.stonecat-solution__description,
.stonecat-solution__variants {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 500;
  color: #1a2332;
}

.stonecat-solution__description {
  margin-bottom: 24px;
}

.stonecat-solution__description strong {
  font-weight: 900;
}

.stonecat-solution__brand {
  font-weight: 500;
}

.stonecat-solution__packaging {
  width: min(100%, 482px);
  margin: 40px 0 0;
}

.stonecat-solution__packaging img {
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-solution__visual {
  position: relative;
  width: 100%;
  min-height: 620px;
}

.stonecat-solution__visual figure {
  margin: 0;
}


.stonecat-solution__grumo {
  position: absolute;
  z-index: 1;
  inset: 112px 0 0;
}

.stonecat-solution__grumo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stonecat-solution__granulado {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 43%;
  width: min(34%, 229px);
  transform: rotate(-0.89deg);
}

.stonecat-solution__granulado img,
.stonecat-solution__sample img {
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-solution__sample {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 29%;
  width: min(22%, 164px);
  transform: rotate(15.11deg);
}

.stonecat-solution__badges {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stonecat-solution__badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 37px;
  padding: 2px 16px;
  border: 2px solid #6edec1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: #1a2332;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.stonecat-solution__badge--natural {
  top: 274px;
  left: 27%;
}

.stonecat-solution__badge--clean {
  top: 72px;
  right: 13%;
}

.stonecat-solution__badge--easy {
  top: 188px;
  right: 0;
}

.stonecat-solution__badge--fast {
  top: 324px;
  right: 4%;
}

@media (max-width: 1200px) {
  .stonecat-solution {
    padding-top: 62px;
    padding-bottom: 76px;
  }

  .stonecat-solution__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .stonecat-solution__copy {
    max-width: 680px;
    margin: 0 auto;
  }

  .stonecat-solution__packaging {
    margin-left: auto;
    margin-right: auto;
  }

  .stonecat-solution__visual {
    max-width: 720px;
    min-height: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .stonecat-solution {
    padding: 46px 22px 58px;
  }

  .stonecat-solution__title {
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.2;
  }

  .stonecat-solution__layout {
    gap: 34px;
  }

  .stonecat-solution__description,
  .stonecat-solution__variants {
    font-size: 16px;
    line-height: 1.62;
  }

  .stonecat-solution__description {
    margin-bottom: 18px;
  }

  .stonecat-solution__packaging {
    width: min(100%, 360px);
    margin-top: 28px;
  }

  .stonecat-solution__visual {
    min-height: 430px;
  }

  .stonecat-solution__grumo {
    inset: 88px 0 0;
  }

  .stonecat-solution__granulado {
    top: 22px;
    left: 59%;
    width: min(34%, 154px);
  }

  .stonecat-solution__sample {
    top: 8px;
    left: 22%;
    width: min(24%, 108px);
  }

  .stonecat-solution__badge {
    min-height: 28px;
    padding: 1px 10px;
    font-size: 14px;
    line-height: 1.35;
  }

  .stonecat-solution__badge--natural {
    top: 184px;
    left: 5%;
  }

  .stonecat-solution__badge--clean {
    top: 58px;
    right: 0;
  }

  .stonecat-solution__badge--easy {
    top: 148px;
    right: 4%;
  }

  .stonecat-solution__badge--fast {
    top: 254px;
    right: 0;
  }
}

@media (max-width: 480px) {
  .stonecat-solution {
    padding: 38px 20px 52px;
  }

  .stonecat-solution__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .stonecat-solution__description,
  .stonecat-solution__variants {
    font-size: 15px;
    line-height: 1.6;
  }

  .stonecat-solution__packaging {
    width: min(100%, 300px);
  }

  .stonecat-solution__visual {
    min-height: 360px;
  }

  .stonecat-solution__grumo {
    inset: 76px 0 0;
  }

  .stonecat-solution__badge {
    font-size: 13px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .stonecat-solution__badge--natural {
    top: 158px;
    left: 0;
  }

  .stonecat-solution__badge--clean {
    top: 50px;
  }

  .stonecat-solution__badge--easy {
    top: 126px;
    right: 0;
  }

  .stonecat-solution__badge--fast {
    top: 216px;
  }
}

@media (max-width: 380px) {
  .stonecat-solution__title {
    font-size: 25px;
  }

  .stonecat-solution__badge {
    font-size: 12px;
    padding-left: 7px;
    padding-right: 7px;
  }
}

/* ============================================
   V13.1 - BLOQUE 05: BENEFICIOS
   Mejora UI editorial respetando textos del cliente.
   Estilos aislados con prefijo stonecat-benefits-.
   ============================================ */

.stonecat-benefits-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(110, 222, 193, 0.18) 0, rgba(110, 222, 193, 0) 30%),
    radial-gradient(circle at 88% 4%, rgba(101, 225, 243, 0.14) 0, rgba(101, 225, 243, 0) 28%),
    #1b2d6b;
  padding: clamp(60px, 7vw, 96px) 24px;
}

.stonecat-benefits-section::before {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 36px;
}

.stonecat-benefits-container {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
}

.stonecat-benefits-title {
  max-width: 760px;
  margin: 0 auto clamp(32px, 4.2vw, 54px);
  color: #ffffff;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-align: center;
}

.stonecat-benefits-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.stonecat-benefits-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 255px;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.98);
  border: 1.5px solid rgba(110, 222, 193, 0.7);
  border-radius: 32px;
  box-shadow: 0 18px 42px rgba(7, 17, 53, 0.17);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-color 280ms ease;
}

.stonecat-benefits-card::after {
  content: "";
  position: absolute;
  width: 144px;
  height: 144px;
  right: -58px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(110, 222, 193, 0.15);
  transition: transform 320ms ease, opacity 320ms ease;
}

.stonecat-benefits-card-agglutination,
.stonecat-benefits-card-odor,
.stonecat-benefits-card-yield {
  border-color: #6edec1;
}

.stonecat-benefits-card-agglutination {
  grid-column: span 7;
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(237, 255, 250, 1) 100%);
}

.stonecat-benefits-card-natural {
  grid-column: span 5;
  min-height: 300px;
}

.stonecat-benefits-card-odor {
  grid-column: span 5;
}

.stonecat-benefits-card-clean {
  grid-column: span 3;
}

.stonecat-benefits-card-yield {
  grid-column: span 4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(239, 251, 255, 1) 100%);
}

.stonecat-benefits-card-final {
  grid-column: span 12;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(241, 255, 251, 1) 46%, rgba(239, 251, 255, 1) 100%);
  border-color: #65e1f3;
}

.stonecat-benefits-icon,
.stonecat-benefits-icon-wind,
.stonecat-benefits-icon-group {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 0 18px;
  border-radius: 22px;
  background: #f1fffb;
  box-shadow: inset 0 0 0 1px rgba(110, 222, 193, 0.38);
  transition: transform 280ms ease, background-color 280ms ease;
}

.stonecat-benefits-icon-group {
  justify-content: flex-start;
  width: 112px;
  background: transparent;
  box-shadow: none;
}

.stonecat-benefits-svg {
  width: 53px;
  height: 49px;
}

.stonecat-benefits-svg-leaf {
  width: 48px;
  height: 52px;
}

.stonecat-benefits-svg-wind {
  width: 46px;
  height: 38px;
}

.stonecat-benefits-svg-clean {
  width: 52px;
  height: 52px;
}

.stonecat-benefits-svg-bag {
  width: 38px;
  height: 55px;
}

.stonecat-benefits-svg-plus {
  width: 33px;
  height: 33px;
  margin-left: 10px;
}

.stonecat-benefits-card-title {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 0 10px;
  color: #1b2d6b;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stonecat-benefits-card-agglutination .stonecat-benefits-card-title,
.stonecat-benefits-card-odor .stonecat-benefits-card-title,
.stonecat-benefits-card-yield .stonecat-benefits-card-title {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.05;
}

.stonecat-benefits-card-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: #1a2332;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.58;
  font-weight: 500;
}

.stonecat-benefits-card-agglutination .stonecat-benefits-card-text,
.stonecat-benefits-card-odor .stonecat-benefits-card-text,
.stonecat-benefits-card-yield .stonecat-benefits-card-text {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.52;
}

.stonecat-benefits-final-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stonecat-benefits-final-title {
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stonecat-benefits-svg-mountain {
  flex: 0 0 auto;
  width: 42px;
  height: 38px;
}

.stonecat-benefits-final-text {
  max-width: 780px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .stonecat-benefits-card:hover {
    transform: translateY(-8px);
    border-color: #65e1f3;
    box-shadow: 0 28px 60px rgba(7, 17, 53, 0.24);
  }

  .stonecat-benefits-card:hover::after {
    transform: scale(1.24);
    opacity: 0.85;
  }

  .stonecat-benefits-card:hover .stonecat-benefits-icon,
  .stonecat-benefits-card:hover .stonecat-benefits-icon-wind,
  .stonecat-benefits-card:hover .stonecat-benefits-icon-group {
    transform: translateY(-3px) rotate(-1deg);
  }
}

.stonecat-animate .stonecat-benefits-card {
  opacity: 0;
  transform: translateY(28px);
}

.stonecat-animate .stonecat-benefits-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stonecat-animate .stonecat-benefits-card.is-visible:hover {
  transform: translateY(-8px);
}

.stonecat-benefits-card.is-visible:nth-child(2) { transition-delay: 70ms; }
.stonecat-benefits-card.is-visible:nth-child(3) { transition-delay: 140ms; }
.stonecat-benefits-card.is-visible:nth-child(4) { transition-delay: 210ms; }
.stonecat-benefits-card.is-visible:nth-child(5) { transition-delay: 280ms; }
.stonecat-benefits-card.is-visible:nth-child(6) { transition-delay: 350ms; }

@media (max-width: 1080px) {
  .stonecat-benefits-container {
    max-width: 760px;
  }

  .stonecat-benefits-layout {
    grid-template-columns: 1fr;
  }

  .stonecat-benefits-card-agglutination,
  .stonecat-benefits-card-natural,
  .stonecat-benefits-card-odor,
  .stonecat-benefits-card-clean,
  .stonecat-benefits-card-yield,
  .stonecat-benefits-card-final {
    grid-column: 1;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .stonecat-benefits-section {
    padding: 52px 18px;
  }

  .stonecat-benefits-section::before {
    inset: 12px;
    border-radius: 28px;
  }

  .stonecat-benefits-title {
    max-width: 340px;
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.12;
  }

  .stonecat-benefits-layout {
    gap: 16px;
  }

  .stonecat-benefits-card {
    padding: 22px;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(7, 17, 53, 0.16);
  }

  .stonecat-benefits-card::after {
    width: 120px;
    height: 120px;
    right: -58px;
    bottom: -64px;
  }

  .stonecat-benefits-icon,
  .stonecat-benefits-icon-wind {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .stonecat-benefits-icon-group {
    width: 100px;
    height: 55px;
    margin-bottom: 14px;
  }

  .stonecat-benefits-card-title,
  .stonecat-benefits-card-agglutination .stonecat-benefits-card-title,
  .stonecat-benefits-card-odor .stonecat-benefits-card-title,
  .stonecat-benefits-card-yield .stonecat-benefits-card-title {
    font-size: 23px;
    line-height: 1.14;
  }

  .stonecat-benefits-card-text,
  .stonecat-benefits-card-agglutination .stonecat-benefits-card-text,
  .stonecat-benefits-card-odor .stonecat-benefits-card-text,
  .stonecat-benefits-card-yield .stonecat-benefits-card-text {
    font-size: 16px;
    line-height: 1.56;
  }

  .stonecat-benefits-final-header {
    flex-direction: column;
    gap: 7px;
  }

  .stonecat-benefits-final-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .stonecat-benefits-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stonecat-benefits-title {
    font-size: 28px;
  }

  .stonecat-benefits-card {
    padding: 21px;
  }

  .stonecat-benefits-card-text {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-benefits-card,
  .stonecat-benefits-card::after,
  .stonecat-benefits-icon,
  .stonecat-benefits-icon-wind,
  .stonecat-benefits-icon-group {
    transition: none;
  }

  .stonecat-animate .stonecat-benefits-card,
  .stonecat-animate .stonecat-benefits-card.is-visible,
  .stonecat-animate .stonecat-benefits-card.is-visible:hover {
    opacity: 1;
    transform: none;
  }
}



/* ============================================
   BLOQUE 07: CÓMO USAR STONECAT
   Sección aislada con prefijo stonecat-howuse-
   ============================================ */

.stonecat-howuse {
  --howuse-blue: #1f2d67;
  --howuse-blue-deep: #1b2d6b;
  --howuse-blue-bright: #2c4fb0;
  --howuse-cyan: #65e1f3;
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(74px, 7.6vw, 112px) 24px clamp(72px, 6.8vw, 98px);
  color: var(--stonecat-white);
  background:
    radial-gradient(circle at 50% 46%, rgba(44, 79, 176, 0.88) 0%, rgba(44, 79, 176, 0.58) 28%, rgba(31, 45, 103, 0) 63%),
    linear-gradient(180deg, #1b2d6b 0%, #1f2d67 16%, #233f91 51%, #1c306f 82%, #1b2d6b 100%);
}

.stonecat-howuse::before,
.stonecat-howuse::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.stonecat-howuse::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 18%);
}

.stonecat-howuse::after {
  width: 470px;
  height: 470px;
  right: -230px;
  bottom: -210px;
  background: rgba(101, 225, 243, 0.07);
  filter: blur(44px);
}

.stonecat-howuse__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.stonecat-howuse__header {
  text-align: center;
  margin: 0 auto clamp(44px, 5.2vw, 68px);
}

.stonecat-howuse__title {
  margin: 0;
  color: var(--stonecat-white);
  font-size: clamp(42px, 4.7vw, 63px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stonecat-howuse__subtitle {
  margin: 10px 0 0;
  color: var(--stonecat-white);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.stonecat-howuse__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 46px);
  align-items: start;
}

.stonecat-howuse__step {
  position: relative;
  min-width: 0;
}

.stonecat-howuse__visual {
  position: relative;
  height: clamp(196px, 18.5vw, 248px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -19px;
  color: var(--howuse-cyan);
}

.stonecat-howuse__number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(198px, 22.5vw, 306px);
  line-height: 0.75;
  font-weight: 900;
  letter-spacing: -0.095em;
  color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.stonecat-howuse__icon {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  height: auto;
  max-width: 76%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.08));
  transition: transform 0.28s ease;
}

.stonecat-howuse__icon--tray {
  width: min(72%, 256px);
  max-height: 182px;
  transform: translate(-10px, 11px);
}

.stonecat-howuse__icon--scoop {
  width: min(56%, 170px);
  max-height: 128px;
  transform: translateY(26px);
}

.stonecat-howuse__icon--bag {
  width: min(42%, 124px);
  max-height: 95px;
  transform: translate(26px, 31px);
}

.stonecat-howuse__card {
  position: relative;
  z-index: 3;
  min-height: 176px;
  padding: 29px clamp(24px, 2.6vw, 36px) 27px;
  border: 1.5px solid rgba(101, 225, 243, 0.74);
  border-radius: 17px;
  background: rgba(31, 45, 103, 0.23);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 48px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(5px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.stonecat-howuse__step-title {
  margin: 0 0 12px;
  color: var(--stonecat-white);
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.012em;
  text-align: center;
}

.stonecat-howuse__step-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.52;
  font-weight: 400;
  text-align: center;
}

.stonecat-howuse__warning {
  margin: clamp(43px, 5vw, 58px) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--howuse-cyan);
  font-size: clamp(28px, 2.9vw, 38px);
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.01em;
}

.stonecat-howuse__warning-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

@media (hover: hover) and (pointer: fine) {
  .stonecat-howuse__step:hover .stonecat-howuse__card {
    transform: translateY(-5px);
    border-color: var(--howuse-cyan);
    background: rgba(37, 68, 153, 0.36);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 30px 66px rgba(0, 0, 0, 0.13);
  }

  .stonecat-howuse__step:hover .stonecat-howuse__icon--tray {
    transform: translate(-10px, 5px) scale(1.015);
  }

  .stonecat-howuse__step:hover .stonecat-howuse__icon--scoop {
    transform: translateY(20px) scale(1.015);
  }

  .stonecat-howuse__step:hover .stonecat-howuse__icon--bag {
    transform: translate(26px, 25px) scale(1.015) rotate(-1deg);
  }
}

.stonecat-animate .stonecat-howuse__number,
.stonecat-animate .stonecat-howuse__icon,
.stonecat-animate .stonecat-howuse__card,
.stonecat-animate .stonecat-howuse__warning {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__number,
.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon,
.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__card,
.stonecat-animate .stonecat-howuse__warning.is-visible {
  opacity: 1;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__number {
  transform: translateY(0);
  transition-delay: 0ms;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--tray {
  transform: translate(-10px, 11px);
  transition-delay: 110ms;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--scoop {
  transform: translateY(26px);
  transition-delay: 110ms;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--bag {
  transform: translate(26px, 31px);
  transition-delay: 110ms;
}

.stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__card {
  transform: translateY(0);
  transition-delay: 210ms;
}

.stonecat-animate .stonecat-howuse__warning.is-visible {
  transform: translateY(0);
}

.stonecat-howuse__step:nth-child(2).is-visible .stonecat-howuse__number { transition-delay: 100ms; }
.stonecat-howuse__step:nth-child(2).is-visible .stonecat-howuse__icon { transition-delay: 210ms; }
.stonecat-howuse__step:nth-child(2).is-visible .stonecat-howuse__card { transition-delay: 310ms; }
.stonecat-howuse__step:nth-child(3).is-visible .stonecat-howuse__number { transition-delay: 200ms; }
.stonecat-howuse__step:nth-child(3).is-visible .stonecat-howuse__icon { transition-delay: 310ms; }
.stonecat-howuse__step:nth-child(3).is-visible .stonecat-howuse__card { transition-delay: 410ms; }

@media (hover: hover) and (pointer: fine) {
  .stonecat-animate .stonecat-howuse__step.is-visible:hover .stonecat-howuse__card {
    transform: translateY(-5px);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible:hover .stonecat-howuse__icon--tray {
    transform: translate(-10px, 5px) scale(1.015);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible:hover .stonecat-howuse__icon--scoop {
    transform: translateY(20px) scale(1.015);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible:hover .stonecat-howuse__icon--bag {
    transform: translate(26px, 25px) scale(1.015) rotate(-1deg);
  }
}

@media (max-width: 1120px) {
  .stonecat-howuse__steps {
    gap: 24px;
  }

  .stonecat-howuse__card {
    min-height: 198px;
    padding-left: 21px;
    padding-right: 21px;
  }
}

@media (max-width: 900px) {
  .stonecat-howuse {
    padding: 64px 18px 72px;
  }

  .stonecat-howuse__steps {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 560px;
    margin: 0 auto;
  }

  .stonecat-howuse__visual {
    height: 182px;
    margin-bottom: -10px;
  }

  .stonecat-howuse__number {
    font-size: clamp(178px, 40vw, 245px);
  }

  .stonecat-howuse__icon--tray {
    width: min(72%, 220px);
    transform: translate(-8px, 8px);
  }

  .stonecat-howuse__icon--scoop {
    width: min(56%, 176px);
    transform: translateY(21px);
  }

  .stonecat-howuse__icon--bag {
    width: min(42%, 128px);
    transform: translate(20px, 25px);
  }

  .stonecat-howuse__card {
    min-height: auto;
    padding: 28px 24px;
  }

  .stonecat-howuse__warning {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--tray {
    transform: translate(-8px, 8px);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--scoop {
    transform: translateY(21px);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--bag {
    transform: translate(20px, 25px);
  }
}

@media (max-width: 520px) {
  .stonecat-howuse {
    padding: 52px 14px 62px;
  }

  .stonecat-howuse__header {
    margin-bottom: 36px;
  }

  .stonecat-howuse__title {
    font-size: 37px;
    line-height: 1.02;
  }

  .stonecat-howuse__subtitle {
    font-size: 24px;
    line-height: 1.18;
    font-weight: 800;
  }

  .stonecat-howuse__steps {
    gap: 32px;
  }

  .stonecat-howuse__visual {
    height: 158px;
    margin-bottom: -6px;
  }

  .stonecat-howuse__number {
    font-size: 178px;
  }

  .stonecat-howuse__icon--tray {
    width: min(76%, 198px);
    transform: translate(-7px, 7px);
  }

  .stonecat-howuse__icon--scoop {
    width: min(63%, 166px);
    transform: translateY(18px);
  }

  .stonecat-howuse__icon--bag {
    width: min(44%, 116px);
    transform: translate(16px, 21px);
  }

  .stonecat-howuse__card {
    border-radius: 16px;
    padding: 25px 19px 27px;
  }

  .stonecat-howuse__step-title {
    font-size: 27px;
    font-weight: 800;
  }

  .stonecat-howuse__step-text {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
  }

  .stonecat-howuse__warning {
    align-items: flex-start;
    gap: 10px;
    font-size: 25px;
  }

  .stonecat-howuse__warning-icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--tray {
    transform: translate(-7px, 7px);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--scoop {
    transform: translateY(18px);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--bag {
    transform: translate(16px, 21px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-howuse__card,
  .stonecat-howuse__icon,
  .stonecat-animate .stonecat-howuse__number,
  .stonecat-animate .stonecat-howuse__icon,
  .stonecat-animate .stonecat-howuse__card,
  .stonecat-animate .stonecat-howuse__warning {
    transition: none;
  }

  .stonecat-animate .stonecat-howuse__number,
  .stonecat-animate .stonecat-howuse__icon,
  .stonecat-animate .stonecat-howuse__card,
  .stonecat-animate .stonecat-howuse__warning {
    opacity: 1;
    transform: none;
  }
}


/* ============================================
   Ajuste mobile — Cómo Usarla: número + ilustración lado a lado
   ============================================ */
@media (max-width: 900px) {
  .stonecat-howuse__steps {
    gap: 34px;
  }

  .stonecat-howuse__visual {
    height: auto;
    min-height: 142px;
    display: grid;
    grid-template-columns: minmax(92px, 0.78fr) minmax(138px, 1fr);
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: min(100%, 360px);
    margin: 0 auto 14px;
  }

  .stonecat-howuse__number {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: clamp(118px, 26vw, 155px);
    line-height: 0.82;
    letter-spacing: -0.1em;
  }

  .stonecat-howuse__icon {
    justify-self: start;
    max-width: none;
    max-height: none;
  }

  .stonecat-howuse__icon--tray,
  .stonecat-howuse__icon--scoop,
  .stonecat-howuse__icon--bag {
    transform: none;
  }

  .stonecat-howuse__icon--tray {
    width: min(100%, 196px);
  }

  .stonecat-howuse__icon--scoop {
    width: min(92%, 164px);
  }

  .stonecat-howuse__icon--bag {
    width: min(68%, 112px);
    margin-left: 8px;
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--tray,
  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--scoop,
  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--bag {
    transform: none;
  }
}

@media (max-width: 520px) {
  .stonecat-howuse__steps {
    gap: 30px;
  }

  .stonecat-howuse__visual {
    min-height: 122px;
    grid-template-columns: minmax(78px, 0.72fr) minmax(118px, 1fr);
    column-gap: 6px;
    width: min(100%, 300px);
    margin-bottom: 12px;
  }

  .stonecat-howuse__number {
    font-size: clamp(104px, 31vw, 132px);
  }

  .stonecat-howuse__icon--tray {
    width: min(100%, 164px);
  }

  .stonecat-howuse__icon--scoop {
    width: min(92%, 138px);
  }

  .stonecat-howuse__icon--bag {
    width: min(66%, 96px);
    margin-left: 5px;
  }
}


/* ============================================
   AJUSTE MOBILE — Cómo Usarla
   Número al lado del ícono, no detrás
   ============================================ */
@media (max-width: 900px) {
  .stonecat-howuse__visual {
    height: auto;
    min-height: 132px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 24px);
  }

  .stonecat-howuse__number {
    position: relative;
    inset: auto;
    display: block;
    flex: 0 0 auto;
    font-size: clamp(96px, 23vw, 132px);
    line-height: 0.82;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.22);
    text-align: center;
  }

  .stonecat-howuse__icon {
    flex: 0 0 auto;
    max-width: none;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.08));
  }

  .stonecat-howuse__icon--tray {
    width: min(47vw, 206px);
    max-height: 142px;
    transform: translateY(0);
  }

  .stonecat-howuse__icon--scoop {
    width: min(42vw, 172px);
    max-height: 120px;
    transform: translateY(0);
  }

  .stonecat-howuse__icon--bag {
    width: min(30vw, 126px);
    max-height: 104px;
    transform: translateY(0);
  }

  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--tray,
  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--scoop,
  .stonecat-animate .stonecat-howuse__step.is-visible .stonecat-howuse__icon--bag {
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .stonecat-howuse__visual {
    min-height: 116px;
    margin-bottom: 16px;
    gap: 13px;
  }

  .stonecat-howuse__number {
    font-size: clamp(82px, 26vw, 104px);
  }

  .stonecat-howuse__icon--tray {
    width: min(49vw, 174px);
    max-height: 120px;
  }

  .stonecat-howuse__icon--scoop {
    width: min(43vw, 150px);
    max-height: 106px;
  }

  .stonecat-howuse__icon--bag {
    width: min(31vw, 104px);
    max-height: 92px;
  }
}


/* ============================================
   BLOQUE 08: NUESTROS PRODUCTOS
   ============================================ */
.stonecat-products {
  background: #ffffff;
  color: #1a2332;
  padding: clamp(72px, 8vw, 104px) 24px clamp(76px, 8vw, 112px);
}

.stonecat-products__container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.stonecat-products__header {
  max-width: 930px;
  margin: 0 auto clamp(42px, 5vw, 56px);
  text-align: center;
}

.stonecat-products__title {
  margin: 0 0 26px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(38px, 4.1vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1b2d6b;
}

.stonecat-products__intro {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
  font-weight: 500;
  color: #1a2332;
}

.stonecat-products__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.stonecat-product-card {
  display: flex;
  min-height: 456px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(13, 26, 65, 0.10);
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.stonecat-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(13, 26, 65, 0.14);
}

.stonecat-product-card__media {
  position: relative;
  height: 199px;
  margin: 0;
  overflow: hidden;
  background: #ecfbff;
}

.stonecat-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stonecat-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 31px 32px 31px;
}

.stonecat-product-card__title {
  max-width: 100%;
  margin: 0 0 14px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #1b2d6b;
}

.stonecat-product-card__text {
  margin: 0 0 20px;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.55;
  font-weight: 500;
  color: #1b2d6b;
}

.stonecat-product-card__sizes {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.stonecat-product-card__sizes li {
  display: inline-flex;
  min-width: 44px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #65e1f3;
  padding: 5px 11px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  color: #1b2d6b;
}

.stonecat-products__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(46px, 5vw, 56px);
}

.stonecat-products__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 3px solid #178f88;
  border-radius: 999px;
  padding: 15px 28px 16px;
  background: #ffffff;
  color: #178f88;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.stonecat-products__button:hover,
.stonecat-products__button:focus-visible {
  background: #178f88;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23, 143, 136, 0.22);
}

.stonecat-products__button:focus-visible {
  outline: 3px solid rgba(101, 225, 243, 0.7);
  outline-offset: 4px;
}

.stonecat-animate .stonecat-product-card,
.stonecat-animate .stonecat-products__button {
  opacity: 0;
  transform: translateY(22px);
}

.stonecat-animate .stonecat-product-card.is-visible,
.stonecat-animate .stonecat-products__button.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.19, 1, 0.22, 1), box-shadow 260ms ease;
}

.stonecat-animate .stonecat-product-card:nth-child(2).is-visible { transition-delay: 90ms; }
.stonecat-animate .stonecat-product-card:nth-child(3).is-visible { transition-delay: 140ms; }
.stonecat-animate .stonecat-product-card:nth-child(4).is-visible { transition-delay: 190ms; }
.stonecat-animate .stonecat-products__button.is-visible { transition-delay: 120ms; }

@media (max-width: 980px) {
  .stonecat-products {
    padding-inline: 20px;
  }

  .stonecat-products__container {
    width: min(100%, 760px);
  }

  .stonecat-products__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stonecat-product-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .stonecat-products {
    padding: 60px 18px 70px;
  }

  .stonecat-products__header {
    margin-bottom: 34px;
  }

  .stonecat-products__title {
    margin-bottom: 18px;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  .stonecat-products__intro {
    font-size: 16px;
    line-height: 1.55;
  }

  .stonecat-product-card {
    border-radius: 16px;
  }

  .stonecat-product-card__media {
    height: 158px;
  }


  .stonecat-product-card__media {
    height: auto;
    aspect-ratio: 547 / 199;
  }

  .stonecat-product-card__media img {
    height: auto;
    object-fit: contain;
  }

  .stonecat-product-card--carbon .stonecat-product-card__title {
    font-size: 21px;
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .stonecat-product-card__body {
    padding: 24px 22px 26px;
  }

  .stonecat-product-card__title {
    font-size: 22px;
    line-height: 1.16;
  }

  .stonecat-product-card__text {
    font-size: 16px;
    line-height: 1.52;
  }

  .stonecat-products__button {
    width: min(100%, 310px);
    min-height: 54px;
    padding-inline: 22px;
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-product-card,
  .stonecat-products__button,
  .stonecat-animate .stonecat-product-card,
  .stonecat-animate .stonecat-products__button {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.stonecat-animate .stonecat-product-card.is-visible:hover {
  transform: translateY(-4px);
}

.stonecat-animate .stonecat-products__button.is-visible:hover,
.stonecat-animate .stonecat-products__button.is-visible:focus-visible {
  transform: translateY(-2px);
}

/* =====================================================
   ACADEMIA STONECAT — comunidad / sección pro
   ===================================================== */
.stonecat-academy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.62) 0, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 86% 68%, rgba(101, 225, 243, 0.24) 0, rgba(101, 225, 243, 0) 30%),
    linear-gradient(180deg, #dbfbf3 0%, #d7fbf1 54%, #dffdf5 100%);
  padding: clamp(76px, 9vw, 132px) 20px clamp(82px, 10vw, 140px);
  color: #1b2d6b;
}

.stonecat-academy::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(219,251,243,0));
  pointer-events: none;
}

.stonecat-academy__container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.stonecat-academy__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stonecat-academy__blob {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(0.3px);
  opacity: 0.28;
}

.stonecat-academy__blob--one {
  width: 340px;
  height: 340px;
  left: -120px;
  top: 8%;
  background: #65e1f3;
}

.stonecat-academy__blob--two {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: 18%;
  background: #2fb8ff;
}

.stonecat-academy__paw {
  position: absolute;
  color: #05a9ff;
  font-weight: 900;
  opacity: 0.38;
  transform: rotate(-12deg);
}

.stonecat-academy__paw--one { left: 9%; top: 37%; font-size: 34px; }
.stonecat-academy__paw--two { right: 8%; top: 47%; font-size: 42px; color: #65e1f3; }
.stonecat-academy__paw--three { left: 6%; bottom: 24%; font-size: 52px; color: #65e1f3; }

.stonecat-academy__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  margin-bottom: clamp(36px, 6vw, 82px);
}

.stonecat-academy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow:
    0 2px 0 #1b2d6b,
    2px 0 0 #1b2d6b,
    -2px 0 0 #1b2d6b,
    0 -2px 0 #1b2d6b,
    0 8px 18px rgba(27, 45, 107, 0.18);
}

.stonecat-academy__eyebrow svg {
  width: 1.05em;
  height: 1.05em;
  color: #1b2d6b;
  filter: drop-shadow(0 4px 0 rgba(255,255,255,0.72));
}

.stonecat-academy__title {
  max-width: 650px;
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.stonecat-academy__title span {
  color: #06a9ff;
}

.stonecat-academy__lead,
.stonecat-academy__text {
  max-width: 600px;
  margin: 24px 0 0;
  color: #1b2d6b;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.72;
  font-weight: 600;
}

.stonecat-academy__text {
  margin-top: 10px;
  font-weight: 500;
}

.stonecat-academy__visual {
  justify-self: center;
  width: min(100%, 560px);
  transform: translateZ(0);
}

.stonecat-academy__visual img {
  display: block;
  width: 100%;
  height: auto;
  animation: stonecatAcademyFloat 6.2s ease-in-out infinite;
}

@keyframes stonecatAcademyFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(0.4deg); }
}

.stonecat-academy__story {
  display: grid;
  grid-template-columns: 0.52fr 1fr 1fr;
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.stonecat-academy__photo {
  width: min(100%, 210px);
  justify-self: center;
  transform: rotate(-7deg);
}

.stonecat-academy__photo img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(27, 45, 107, 0.14);
}

.stonecat-academy__story-card {
  position: relative;
  border-radius: 30px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(101, 225, 243, 0.72);
  box-shadow: 0 22px 58px rgba(27, 45, 107, 0.07);
  backdrop-filter: blur(8px);
}

.stonecat-academy__story-card--strong {
  background: rgba(255,255,255,0.22);
}

.stonecat-academy__story-card p {
  margin: 0 0 14px;
  color: #1b2d6b;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
  font-weight: 600;
}

.stonecat-academy__story-card p:last-child { margin-bottom: 0; }

.stonecat-academy__cta-wrap {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 76px);
}

.stonecat-academy__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 18px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #28b6ff 0%, #06a9ff 100%);
  color: #1b2d6b;
  text-decoration: none;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(47, 184, 255, 0.22), inset 0 -2px 0 rgba(27, 45, 107, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.stonecat-academy__button:hover,
.stonecat-academy__button:focus-visible {
  transform: translateY(-3px) scale(1.012);
  filter: saturate(1.08);
  box-shadow: 0 26px 56px rgba(47, 184, 255, 0.32), inset 0 -2px 0 rgba(27, 45, 107, 0.18);
}

.stonecat-academy__proof {
  max-width: 520px;
  margin: 26px auto 0;
  color: rgba(27, 45, 107, 0.72);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  font-weight: 600;
}

.stonecat-academy__benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.stonecat-academy-card {
  position: relative;
  min-height: 218px;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 34px);
  border-radius: 24px;
  background: #ffffff;
  border: 2px solid #65e1f3;
  box-shadow: 0 24px 44px rgba(27, 45, 107, 0.09);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.stonecat-academy-card:hover {
  transform: translateY(-5px);
  border-color: #06a9ff;
  box-shadow: 0 32px 64px rgba(27, 45, 107, 0.13);
}

.stonecat-academy-card__icon {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  color: #1b2d6b;
}

.stonecat-academy-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.stonecat-academy-card h3 {
  max-width: 310px;
  margin: 0 52px 14px 0;
  color: #1b2d6b;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stonecat-academy-card p {
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.62;
  font-weight: 600;
}

.stonecat-academy__exclusive {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: clamp(24px, 3vw, 34px) clamp(26px, 4vw, 46px);
  border-radius: 24px;
  background: #1b2d6b;
  color: #ffffff;
  box-shadow: 0 28px 58px rgba(27, 45, 107, 0.18);
}

.stonecat-academy__exclusive h3 {
  margin: 0 0 10px;
  color: #65e1f3;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
  font-weight: 900;
}

.stonecat-academy__exclusive p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(15px, 1.28vw, 18px);
  line-height: 1.58;
  font-weight: 600;
}

.stonecat-academy__exclusive > svg {
  width: 52px;
  height: 52px;
  color: #e2f9ff;
}

.stonecat-academy__avatars {
  display: flex;
  align-items: center;
}

.stonecat-academy__avatars span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: -12px;
  border-radius: 999px;
  border: 4px solid #1b2d6b;
  background: #eafff9;
  color: #1b2d6b;
  font-size: 22px;
  font-weight: 900;
}

.stonecat-academy__avatars span:last-child {
  margin-right: 0;
  background: #65e1f3;
  font-size: 24px;
}

.stonecat-academy__closing {
  position: relative;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
}

.stonecat-academy__closing img {
  position: absolute;
  right: clamp(2px, 6vw, 110px);
  top: -76px;
  width: clamp(120px, 16vw, 190px);
  border-radius: 24px;
  transform: rotate(8deg);
  box-shadow: 0 22px 48px rgba(27, 45, 107, 0.16);
}

.stonecat-academy__closing p {
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.stonecat-animate [data-academy-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.68s ease, transform 0.68s ease;
}

.stonecat-animate [data-academy-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stonecat-animate .stonecat-academy__visual.is-visible {
  transform: translateY(0);
}

.stonecat-academy__story-card:nth-child(3),
.stonecat-academy-card:nth-child(2) { transition-delay: 0.08s; }
.stonecat-academy-card:nth-child(3) { transition-delay: 0.14s; }
.stonecat-academy-card:nth-child(4) { transition-delay: 0.2s; }

@media (max-width: 1024px) {
  .stonecat-academy__hero {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .stonecat-academy__title,
  .stonecat-academy__lead,
  .stonecat-academy__text {
    margin-left: auto;
    margin-right: auto;
  }

  .stonecat-academy__story {
    grid-template-columns: 1fr 1fr;
  }

  .stonecat-academy__photo {
    display: none;
  }
}

@media (max-width: 768px) {
  .stonecat-academy {
    padding: 66px 18px 76px;
  }

  .stonecat-academy__hero {
    margin-bottom: 34px;
  }

  .stonecat-academy__eyebrow {
    font-size: 27px;
    margin-bottom: 18px;
  }

  .stonecat-academy__title {
    font-size: clamp(35px, 10vw, 48px);
    line-height: 1.03;
  }

  .stonecat-academy__lead,
  .stonecat-academy__text {
    font-size: 16.5px;
    line-height: 1.62;
  }

  .stonecat-academy__visual {
    width: min(100%, 440px);
    margin-top: 4px;
  }

  .stonecat-academy__story {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .stonecat-academy__story-card {
    padding: 24px;
    border-radius: 24px;
  }

  .stonecat-academy__button {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    font-size: 16.5px;
  }

  .stonecat-academy__benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stonecat-academy-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .stonecat-academy-card__icon {
    width: 40px;
    height: 40px;
    right: 22px;
    top: 22px;
  }

  .stonecat-academy-card h3 {
    margin-right: 46px;
    font-size: 21px;
  }

  .stonecat-academy__exclusive {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding: 26px 22px;
  }

  .stonecat-academy__closing img {
    position: static;
    width: 140px;
    transform: rotate(5deg);
  }
}

@media (max-width: 420px) {
  .stonecat-academy__title {
    font-size: 34px;
  }

  .stonecat-academy__visual {
    width: 112%;
    margin-left: -6%;
  }

  .stonecat-academy-card h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-academy__visual img {
    animation: none;
  }

  .stonecat-animate [data-academy-animate] {
    transition: none;
  }
}


/* =====================================================
   ACADEMIA STONECAT — hero gamificado v16.1
   Reestructura del primer impacto: badge compacto, CTA protagonista
   y collage fragmentado en piezas independientes.
   ===================================================== */

.stonecat-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stonecat-academy__hero--game {
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  min-height: min(760px, 78vh);
  margin-bottom: clamp(42px, 7vw, 92px);
}

.stonecat-academy__eyebrow--badge {
  margin-bottom: 26px;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 2px solid rgba(101, 225, 243, 0.86);
  color: #1b2d6b;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 16px 34px rgba(27, 45, 107, 0.08);
}

.stonecat-academy__eyebrow--badge svg {
  width: 22px;
  height: 22px;
  color: #06a9ff;
  filter: none;
}

.stonecat-academy__hero--game .stonecat-academy__title {
  max-width: 620px;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.stonecat-academy__hero--game .stonecat-academy__text {
  max-width: 580px;
  margin-top: 30px;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.72;
  font-weight: 500;
}

.stonecat-academy__hero-actions {
  margin-top: 34px;
}

.stonecat-academy__button--hero {
  width: auto;
  min-width: min(100%, 390px);
}

.stonecat-academy__mission-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.stonecat-academy__mission-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(101,225,243,0.88);
  color: #1b2d6b;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(27, 45, 107, 0.06);
}

.stonecat-academy-gameboard {
  position: relative;
  width: min(100%, 640px);
  min-height: clamp(430px, 45vw, 590px);
  justify-self: center;
  isolation: isolate;
}

.stonecat-academy-gameboard img {
  animation: none;
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-academy-piece {
  position: absolute;
  margin: 0;
  transform-origin: center;
  will-change: transform;
}

.stonecat-academy-piece img {
  border-radius: inherit;
}

.stonecat-academy-piece--main {
  width: min(76%, 470px);
  right: 2%;
  top: 4%;
  border-radius: 34px;
  filter: drop-shadow(0 26px 44px rgba(27, 45, 107, 0.15));
  animation: stonecatAcademyGameFloat 6.5s ease-in-out infinite;
  z-index: 3;
}

.stonecat-academy-piece--main img {
  border-radius: 34px;
}

.stonecat-academy-piece--support-left {
  width: min(32%, 180px);
  left: 0;
  bottom: 20%;
  border-radius: 22px;
  transform: rotate(-5deg);
  box-shadow: 0 20px 42px rgba(27, 45, 107, 0.12);
  z-index: 4;
}

.stonecat-academy-piece--support-bottom {
  width: min(34%, 190px);
  left: 16%;
  bottom: 1%;
  border-radius: 23px;
  transform: rotate(-7deg);
  box-shadow: 0 22px 48px rgba(27, 45, 107, 0.13);
  z-index: 2;
}

.stonecat-academy-piece--reward {
  width: min(35%, 210px);
  right: 0;
  bottom: 8%;
  border-radius: 22px;
  transform: rotate(7deg);
  box-shadow: 0 22px 48px rgba(27, 45, 107, 0.13);
  z-index: 4;
}

.stonecat-academy-token,
.stonecat-academy-float {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

.stonecat-academy-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #06a9ff;
  color: #1b2d6b;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(6, 169, 255, 0.24), inset 0 -2px 0 rgba(27,45,107,0.15);
}

.stonecat-academy-token--member {
  top: 17%;
  right: 0;
  transform: rotate(5deg);
}

.stonecat-academy-token--level {
  left: 8%;
  top: 12%;
  background: #ffffff;
  border: 2px solid #65e1f3;
  transform: rotate(-6deg);
}

.stonecat-academy-float {
  color: #06a9ff;
  font-weight: 900;
  text-shadow: 0 8px 18px rgba(27,45,107,0.12);
  animation: stonecatAcademyTokenFloat 4.8s ease-in-out infinite;
}

.stonecat-academy-float--heart {
  right: 34%;
  bottom: 15%;
  font-size: 34px;
}

.stonecat-academy-float--paw {
  left: 46%;
  bottom: 35%;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(101,225,243,0.78);
  color: #1b2d6b;
  font-size: 0;
}

.stonecat-academy-float--paw::before,
.stonecat-academy-float--paw::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
}

.stonecat-academy-float--paw::before {
  width: 18px;
  height: 14px;
  left: 10px;
  bottom: 8px;
}

.stonecat-academy-float--paw::after {
  width: 7px;
  height: 7px;
  left: 8px;
  top: 8px;
  box-shadow: 10px -2px 0 currentColor, 20px 2px 0 currentColor;
}

@keyframes stonecatAcademyGameFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(0.8deg); }
}

@keyframes stonecatAcademyTokenFloat {
  0%, 100% { transform: translate3d(0,0,0) rotate(-6deg); }
  50% { transform: translate3d(0,-9px,0) rotate(4deg); }
}

.stonecat-academy__cta-wrap--proof {
  margin-top: -18px;
}

.stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
  margin-top: 0;
}

/* Animación escalonada del primer bloque Academia */
.stonecat-animate .stonecat-academy-gameboard [data-academy-animate],
.stonecat-animate .stonecat-academy__hero-actions[data-academy-animate] {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.98);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.stonecat-animate .stonecat-academy-gameboard [data-academy-animate].is-visible,
.stonecat-animate .stonecat-academy__hero-actions[data-academy-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.stonecat-animate .stonecat-academy-piece--main { transition-delay: 0.08s; }
.stonecat-animate .stonecat-academy-token--level { transition-delay: 0.18s; }
.stonecat-animate .stonecat-academy-piece--support-left { transition-delay: 0.28s; }
.stonecat-animate .stonecat-academy-token--member { transition-delay: 0.36s; }
.stonecat-animate .stonecat-academy-piece--reward { transition-delay: 0.44s; }
.stonecat-animate .stonecat-academy-piece--support-bottom { transition-delay: 0.52s; }
.stonecat-animate .stonecat-academy-float--heart { transition-delay: 0.60s; }
.stonecat-animate .stonecat-academy-float--paw { transition-delay: 0.68s; }

@media (max-width: 1024px) {
  .stonecat-academy__hero--game {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .stonecat-academy__hero--game .stonecat-academy__title,
  .stonecat-academy__hero--game .stonecat-academy__text {
    margin-left: auto;
    margin-right: auto;
  }

  .stonecat-academy__mission-chips {
    justify-content: center;
  }

  .stonecat-academy-gameboard {
    width: min(100%, 640px);
  }
}

@media (max-width: 768px) {
  .stonecat-academy__hero--game {
    gap: 34px;
    margin-bottom: 42px;
  }

  .stonecat-academy__eyebrow--badge {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .stonecat-academy__hero--game .stonecat-academy__title {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.02;
  }

  .stonecat-academy__hero--game .stonecat-academy__text {
    margin-top: 22px;
    font-size: 16.5px;
    line-height: 1.62;
  }

  .stonecat-academy__hero-actions {
    margin-top: 26px;
  }

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

  .stonecat-academy-gameboard {
    width: 100%;
    min-height: 520px;
    margin-top: 0;
  }

  .stonecat-academy-piece--main {
    width: 86%;
    right: 7%;
    top: 0;
  }

  .stonecat-academy-piece--support-left {
    width: 35%;
    left: 0;
    bottom: 22%;
  }

  .stonecat-academy-piece--support-bottom {
    width: 39%;
    left: 13%;
    bottom: 0;
  }

  .stonecat-academy-piece--reward {
    width: 42%;
    right: 0;
    bottom: 5%;
  }

  .stonecat-academy-token--level {
    left: 2%;
    top: 3%;
  }

  .stonecat-academy-token--member {
    right: 4%;
    top: 38%;
  }

  .stonecat-academy-float--heart {
    right: 47%;
    bottom: 14%;
    font-size: 28px;
  }

  .stonecat-academy-float--paw {
    left: 47%;
    bottom: 38%;
    transform: scale(0.82);
  }

  .stonecat-academy__cta-wrap--proof {
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .stonecat-academy-gameboard {
    min-height: 460px;
  }

  .stonecat-academy-token {
    font-size: 11px;
    min-height: 31px;
    padding: 7px 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-academy-piece--main,
  .stonecat-academy-float {
    animation: none;
  }
}


/* =====================================================
   ACADEMIA STONECAT — preview assets separados v16.2
   Ajuste solicitado: wordmark como H2 estilo navbar + collage fiel.
   ===================================================== */

.stonecat-academy__background::before,
.stonecat-academy__background::after {
  content: "";
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.86;
  pointer-events: none;
}

.stonecat-academy__background::before {
  width: 72px;
  height: 72px;
  left: 5.8%;
  top: 42%;
  background-image: url("assets/academia-heart-outline-left.svg");
  transform: rotate(-6deg);
}

.stonecat-academy__background::after {
  width: 54px;
  height: 54px;
  right: 4.5%;
  top: 45%;
  background-image: url("assets/academia-heart-outline-right.svg");
  transform: rotate(7deg);
}

.stonecat-academy__hero--game {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(42px, 7vw, 96px);
  min-height: min(720px, 78vh);
  align-items: center;
}

.stonecat-academy__wordmark {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1vw, 16px);
  margin: 0 0 clamp(34px, 5vw, 72px);
  line-height: 0.95;
}

.stonecat-academy__wordmark-stack {
  position: relative;
  display: inline-grid;
  line-height: 0.92;
}

.stonecat-academy__wordmark-bg,
.stonecat-academy__wordmark-fg {
  grid-area: 1 / 1;
  font-size: clamp(38px, 4.3vw, 66px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: #ffffff;
  white-space: nowrap;
  paint-order: stroke fill;
}

.stonecat-academy__wordmark-bg {
  -webkit-text-stroke: clamp(9px, 0.9vw, 13px) var(--stonecat-cyan, #65e1f3);
  text-stroke: clamp(9px, 0.9vw, 13px) var(--stonecat-cyan, #65e1f3);
  transform: translate(-2px, 4px);
}

.stonecat-academy__wordmark-fg {
  -webkit-text-stroke: clamp(4px, 0.38vw, 6px) var(--stonecat-navy-dark, #10235f);
  text-stroke: clamp(4px, 0.38vw, 6px) var(--stonecat-navy-dark, #10235f);
}

.stonecat-academy__wordmark svg {
  width: clamp(38px, 4vw, 60px);
  height: clamp(38px, 4vw, 60px);
  color: var(--stonecat-navy-dark, #10235f);
  flex: 0 0 auto;
  transform: translateY(4px);
}

.stonecat-academy__headline {
  max-width: 680px;
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.stonecat-academy__headline span {
  display: inline-block;
  color: #06a9ff;
}

.stonecat-academy__intro {
  max-width: 680px;
  margin-top: clamp(32px, 4vw, 54px);
}

.stonecat-academy__intro p {
  margin: 0 0 14px;
  color: #1b2d6b;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.stonecat-academy__mimo {
  width: min(230px, 42vw);
  margin: clamp(44px, 5vw, 70px) 0 0 0;
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(0deg);
}

.stonecat-academy__mimo img {
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-academy-gameboard {
  position: relative;
  width: min(100%, 660px);
  min-height: clamp(520px, 47vw, 650px);
  justify-self: center;
  isolation: isolate;
}

.stonecat-academy-gameboard img {
  animation: none;
}

.stonecat-academy-piece--karens {
  width: min(82%, 548px);
  right: 5%;
  top: 3%;
  z-index: 4;
  filter: drop-shadow(0 28px 48px rgba(27, 45, 107, 0.10));
  animation: stonecatAcademyHeroFloat 6.4s ease-in-out infinite;
}

.stonecat-academy-piece--karens img {
  border-radius: 0;
}

.stonecat-academy-piece--give5 {
  width: clamp(112px, 12vw, 158px);
  right: 0;
  top: 0;
  z-index: 6;
  border-radius: 999px;
  filter: drop-shadow(0 18px 34px rgba(27,45,107,0.13));
  animation: stonecatAcademySmallFloat 5.8s ease-in-out infinite;
}

.stonecat-academy-piece--give5 img {
  border-radius: 999px;
}

.stonecat-academy-sticker {
  position: absolute;
  display: block;
  height: auto;
  z-index: 7;
  pointer-events: none;
  animation: stonecatAcademyStickerFloat 5.2s ease-in-out infinite;
}

.stonecat-academy-sticker--badge-cat {
  width: clamp(82px, 9vw, 120px);
  right: 17%;
  top: 20%;
  transform: rotate(-8deg);
}

.stonecat-academy-sticker--badge-paw {
  width: clamp(96px, 10vw, 138px);
  right: 4%;
  bottom: 9%;
  transform: rotate(5deg);
}

.stonecat-academy-sticker--stony {
  width: clamp(92px, 11vw, 150px);
  right: 31%;
  bottom: 19%;
  z-index: 8;
  filter: drop-shadow(0 16px 26px rgba(27,45,107,0.15));
}

.stonecat-academy-sticker--heart-one {
  width: clamp(30px, 3.8vw, 44px);
  right: 45%;
  bottom: 33%;
  transform: rotate(-8deg);
}

.stonecat-academy-sticker--heart-two {
  width: clamp(26px, 3.2vw, 38px);
  right: 22%;
  bottom: 20%;
  transform: rotate(12deg);
}

.stonecat-academy-sticker--paw-solid {
  width: clamp(62px, 7vw, 95px);
  left: 6%;
  bottom: 21%;
  z-index: 2;
  opacity: 0.98;
}

.stonecat-academy-sticker--hearts-mini {
  width: clamp(36px, 4vw, 52px);
  left: 50%;
  bottom: 3%;
  opacity: 0.95;
}

@keyframes stonecatAcademyHeroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.2deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-0.4deg); }
}

@keyframes stonecatAcademySmallFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -9px, 0) rotate(2deg); }
}

@keyframes stonecatAcademyStickerFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* Deja sin efecto piezas antiguas del hero gamificado anterior */
.stonecat-academy-piece--main,
.stonecat-academy-piece--support-left,
.stonecat-academy-piece--support-bottom,
.stonecat-academy-piece--reward,
.stonecat-academy-token,
.stonecat-academy-float {
  display: none;
}

.stonecat-animate .stonecat-academy__wordmark[data-academy-animate],
.stonecat-animate .stonecat-academy__mimo[data-academy-animate],
.stonecat-animate .stonecat-academy-sticker[data-academy-animate],
.stonecat-animate .stonecat-academy-piece[data-academy-animate] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.stonecat-animate .stonecat-academy__wordmark[data-academy-animate].is-visible,
.stonecat-animate .stonecat-academy__mimo[data-academy-animate].is-visible,
.stonecat-animate .stonecat-academy-sticker[data-academy-animate].is-visible,
.stonecat-animate .stonecat-academy-piece[data-academy-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.stonecat-animate .stonecat-academy-piece--karens { transition-delay: 0.08s; }
.stonecat-animate .stonecat-academy-piece--give5 { transition-delay: 0.18s; }
.stonecat-animate .stonecat-academy-sticker--badge-cat { transition-delay: 0.26s; }
.stonecat-animate .stonecat-academy-sticker--stony { transition-delay: 0.34s; }
.stonecat-animate .stonecat-academy-sticker--heart-one { transition-delay: 0.42s; }
.stonecat-animate .stonecat-academy-sticker--paw-solid { transition-delay: 0.50s; }
.stonecat-animate .stonecat-academy-sticker--badge-paw { transition-delay: 0.58s; }
.stonecat-animate .stonecat-academy-sticker--heart-two { transition-delay: 0.66s; }
.stonecat-animate .stonecat-academy-sticker--hearts-mini { transition-delay: 0.74s; }

@media (max-width: 1100px) {
  .stonecat-academy__hero--game {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .stonecat-academy__wordmark,
  .stonecat-academy__headline,
  .stonecat-academy__intro {
    margin-left: auto;
    margin-right: auto;
  }

  .stonecat-academy__mimo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .stonecat-academy__hero--game {
    gap: 28px;
  }

  .stonecat-academy__wordmark {
    gap: 8px;
    margin-bottom: 28px;
  }

  .stonecat-academy__wordmark-bg,
  .stonecat-academy__wordmark-fg {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -0.06em;
  }

  .stonecat-academy__wordmark svg {
    width: clamp(30px, 8vw, 42px);
    height: clamp(30px, 8vw, 42px);
  }

  .stonecat-academy__headline {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.02;
  }

  .stonecat-academy__intro {
    margin-top: 24px;
  }

  .stonecat-academy__intro p {
    font-size: 17px;
    line-height: 1.5;
  }

  .stonecat-academy__mimo {
    width: min(198px, 66vw);
    margin-top: 32px;
  }

  .stonecat-academy-gameboard {
    width: 100%;
    min-height: 500px;
  }

  .stonecat-academy-piece--karens {
    width: min(96%, 546px);
    right: 2%;
    top: 12px;
  }

  .stonecat-academy-piece--give5 {
    width: 92px;
    right: 2%;
    top: 0;
  }

  .stonecat-academy-sticker--badge-cat {
    width: 82px;
    right: 17%;
    top: 24%;
  }

  .stonecat-academy-sticker--badge-paw {
    width: 95px;
    right: 3%;
    bottom: 12%;
  }

  .stonecat-academy-sticker--stony {
    width: 92px;
    right: 36%;
    bottom: 23%;
  }

  .stonecat-academy-sticker--paw-solid {
    width: 62px;
    left: 8%;
    bottom: 28%;
  }

  .stonecat-academy-sticker--heart-one {
    width: 30px;
    right: 53%;
    bottom: 35%;
  }

  .stonecat-academy-sticker--heart-two {
    width: 26px;
    right: 29%;
    bottom: 18%;
  }

  .stonecat-academy-sticker--hearts-mini {
    width: 36px;
    left: 48%;
    bottom: 3%;
  }
}

@media (max-width: 440px) {
  .stonecat-academy__wordmark {
    transform: scale(0.92);
    transform-origin: center;
  }

  .stonecat-academy-gameboard {
    min-height: 430px;
  }

  .stonecat-academy-piece--karens {
    width: 108%;
    right: -4%;
  }

  .stonecat-academy-piece--give5 {
    width: 76px;
  }

  .stonecat-academy-sticker--stony {
    width: 78px;
  }

  .stonecat-academy-sticker--badge-paw {
    width: 82px;
  }

  .stonecat-academy__background::before,
  .stonecat-academy__background::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stonecat-academy-piece--karens,
  .stonecat-academy-piece--give5,
  .stonecat-academy-sticker {
    animation: none;
  }
}


/* Preserva los ángulos individuales aunque el observer aplique translateY */
.stonecat-academy-sticker--badge-cat { rotate: -8deg; transform: none; }
.stonecat-academy-sticker--badge-paw { rotate: 5deg; transform: none; }
.stonecat-academy-sticker--heart-one { rotate: -8deg; transform: none; }
.stonecat-academy-sticker--heart-two { rotate: 12deg; transform: none; }

/* =====================================================
   ACADEMIA STONECAT — ajuste seguro v16.3
   Scope: solo sección #academia.
   - H2/wordmark pasa a ser protagonista visual.
   - Headline secundaria baja un nivel.
   - Stickers directos recuperan su tamaño real y no heredan width:100%.
   ===================================================== */

#academia .stonecat-academy__wordmark-bg,
#academia .stonecat-academy__wordmark-fg {
  font-size: clamp(50px, 5.7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

#academia .stonecat-academy__wordmark svg {
  width: clamp(46px, 4.9vw, 72px);
  height: clamp(46px, 4.9vw, 72px);
}

#academia .stonecat-academy__headline {
  max-width: 620px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.02;
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker {
  width: auto;
  max-width: none;
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-cat {
  width: clamp(82px, 9vw, 120px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-paw {
  width: clamp(96px, 10vw, 138px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--stony {
  width: clamp(92px, 11vw, 150px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--heart-one {
  width: clamp(30px, 3.8vw, 44px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--heart-two {
  width: clamp(26px, 3.2vw, 38px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--paw-solid {
  width: clamp(62px, 7vw, 95px);
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--hearts-mini {
  width: clamp(36px, 4vw, 52px);
}

@media (max-width: 768px) {
  #academia .stonecat-academy__wordmark-bg,
  #academia .stonecat-academy__wordmark-fg {
    font-size: clamp(34px, 10.2vw, 44px);
  }

  #academia .stonecat-academy__wordmark svg {
    width: clamp(30px, 8vw, 40px);
    height: clamp(30px, 8vw, 40px);
  }

  #academia .stonecat-academy__headline {
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.04;
  }

  #academia .stonecat-academy-gameboard {
    min-height: 460px;
  }

  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-cat { width: 82px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-paw { width: 95px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--stony { width: 92px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--heart-one { width: 30px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--heart-two { width: 26px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--paw-solid { width: 62px; }
  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--hearts-mini { width: 36px; }
}

/* =====================================================
   ACADEMIA STONECAT — H2 wordmark fiel v17.1
   Scope: solo sección #academia.
   - Mantiene H2 como texto real SEO.
   - Replica el HTML de referencia: cápsula mint + doble stroke.
   - Usa el bonete correcto como asset, sin stroke cyan agregado.
   ===================================================== */

#academia .stonecat-academy__wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 14px);
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(26px, 3vw, 40px);
  padding: 14px 36px 14px 32px;
  border-radius: 60px;
  background: #DBFBF3;
  font-family: "Nunito", sans-serif;
  line-height: 1;
  isolation: isolate;
}

#academia .stonecat-academy__wordmark-text {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: transparent;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

#academia .stonecat-academy__wordmark-text::before,
#academia .stonecat-academy__wordmark-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: #ffffff;
  white-space: nowrap;
  pointer-events: none;
  paint-order: stroke fill;
}

/* Stroke exterior cyan */
#academia .stonecat-academy__wordmark-text::before {
  z-index: 0;
  -webkit-text-stroke: 12px #56DDF2;
  text-stroke: 12px #56DDF2;
}

/* Stroke interior navy + fill blanco */
#academia .stonecat-academy__wordmark-text::after {
  z-index: 1;
  -webkit-text-stroke: 6px #002755;
  text-stroke: 6px #002755;
}

#academia .stonecat-academy__wordmark-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

/* Deja sin efecto capas anteriores del wordmark */
#academia .stonecat-academy__wordmark-stack,
#academia .stonecat-academy__wordmark-back,
#academia .stonecat-academy__wordmark-front,
#academia .stonecat-academy__wordmark svg {
  display: none;
}

@media (max-width: 768px) {
  #academia .stonecat-academy__wordmark {
    gap: 8px;
    margin-bottom: 22px;
    padding: 11px 20px 11px 18px;
  }

  #academia .stonecat-academy__wordmark-text {
    font-size: clamp(27px, 7.4vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  #academia .stonecat-academy__wordmark-text::before {
    -webkit-text-stroke: 8px #56DDF2;
    text-stroke: 8px #56DDF2;
  }

  #academia .stonecat-academy__wordmark-text::after {
    -webkit-text-stroke: 4px #002755;
    text-stroke: 4px #002755;
  }

  #academia .stonecat-academy__wordmark-icon {
    width: clamp(30px, 8vw, 36px);
    height: clamp(30px, 8vw, 36px);
  }
}

@media (max-width: 440px) {
  #academia .stonecat-academy__wordmark {
    transform: none;
  }
}

/* =====================================================
   DÓNDE ENCONTRAR STONECAT — sección puntos de venta
   Integración segura v16.5
   Scope: solo #donde-comprar / .stonecat-donde-*
   ===================================================== */

.stonecat-donde-section {
  position: relative;
  width: 100%;
  font-family: "Nunito", sans-serif;
  background: #ffffff;
  padding: clamp(72px, 8vw, 118px) 20px clamp(72px, 7vw, 104px);
  overflow: hidden;
}

.stonecat-donde-section::before {
  content: "";
  position: absolute;
  width: clamp(220px, 26vw, 430px);
  height: clamp(220px, 26vw, 430px);
  top: 8%;
  left: -13%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(101, 225, 243, 0.24) 0%, rgba(101, 225, 243, 0) 68%);
  pointer-events: none;
}

.stonecat-donde-section::after {
  content: "";
  position: absolute;
  width: clamp(180px, 21vw, 340px);
  height: clamp(180px, 21vw, 340px);
  right: -9%;
  bottom: 5%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 194, 222, 0.16) 0%, rgba(6, 194, 222, 0) 70%);
  pointer-events: none;
}

.stonecat-donde-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.stonecat-donde-title {
  margin: 0 auto clamp(18px, 2vw, 26px);
  max-width: 880px;
  color: #1b2d6b;
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  line-height: 48px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.stonecat-donde-intro {
  max-width: 820px;
  margin: 0 auto clamp(34px, 4.6vw, 64px);
  color: #1a2332;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  font-weight: 500;
  text-align: center;
}

.stonecat-donde-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 30px);
}

.stonecat-donde-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 3vw, 42px) clamp(22px, 2.4vw, 34px) clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #f5fffd 0%, #ecfbf8 100%);
  border: 2px solid #06c2de;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(27, 45, 107, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stonecat-donde-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  pointer-events: none;
}

.stonecat-donde-icon {
  position: relative;
  z-index: 1;
  width: clamp(68px, 6.3vw, 88px);
  height: clamp(68px, 6.3vw, 88px);
  margin-bottom: 24px;
  flex: 0 0 auto;
}

.stonecat-donde-icon svg,
.stonecat-donde-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.stonecat-donde-icon img {
  object-fit: contain;
}

.stonecat-donde-icon-petshops {
  width: clamp(72px, 6.5vw, 92px);
  height: clamp(72px, 6.5vw, 92px);
}

.stonecat-donde-icon-ml {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border-radius: 22px;
  background-color: #fff085;
  box-shadow: inset 0 -4px 0 rgba(27, 45, 107, 0.08);
}

.stonecat-donde-card-title {
  position: relative;
  z-index: 1;
  min-height: 64px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b2d6b;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.stonecat-donde-card-text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  margin: 0 0 22px;
  color: #1a2332;
  font-size: 16px;
  line-height: 1.58;
  font-weight: 500;
}

.stonecat-donde-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d8a84;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.stonecat-donde-card-link:hover,
.stonecat-donde-card-link:focus-visible {
  color: #15736e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .stonecat-donde-card:hover {
    transform: translateY(-7px);
    border-color: #65e1f3;
    box-shadow: 0 24px 56px rgba(27, 45, 107, 0.16);
  }
}

@media (max-width: 980px) {
  .stonecat-donde-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .stonecat-donde-card {
    min-height: auto;
  }

  .stonecat-donde-card-title {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .stonecat-donde-section {
    padding: 64px 18px 70px;
  }

  .stonecat-donde-title {
    max-width: 340px;
    font-size: 34px;
    line-height: 1.05;
  }

  .stonecat-donde-intro {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.52;
  }

  .stonecat-donde-grid {
    gap: 16px;
  }

  .stonecat-donde-card {
    padding: 26px 20px 24px;
    border-radius: 24px;
  }

  .stonecat-donde-card::before {
    inset: 8px;
    border-radius: 18px;
  }

  .stonecat-donde-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
  }

  .stonecat-donde-icon-petshops {
    width: 70px;
    height: 70px;
  }

  .stonecat-donde-icon-ml {
    padding: 7px;
    border-radius: 18px;
  }

  .stonecat-donde-card-title {
    font-size: 22px;
    line-height: 1.18;
  }

  .stonecat-donde-card-text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .stonecat-donde-card-link {
    width: auto;
    min-height: 0;
    font-size: 16px;
  }
}


/* =====================================================
   PREGUNTAS FRECUENTES — FAQ SEO real
   Scope: solo sección #preguntas-frecuentes.
   ===================================================== */

.stonecat-faq-section {
  position: relative;
  width: 100%;
  padding: clamp(78px, 8vw, 112px) 20px clamp(84px, 8.5vw, 124px);
  background: #002656;
  font-family: "Nunito", sans-serif;
  overflow: hidden;
}

.stonecat-faq-section::before,
.stonecat-faq-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.stonecat-faq-section::before {
  width: clamp(280px, 32vw, 520px);
  height: clamp(280px, 32vw, 520px);
  left: -18%;
  top: 10%;
  background: radial-gradient(circle, rgba(101, 225, 243, 0.10) 0%, rgba(101, 225, 243, 0) 68%);
}

.stonecat-faq-section::after {
  width: clamp(220px, 25vw, 420px);
  height: clamp(220px, 25vw, 420px);
  right: -14%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(101, 225, 243, 0.11) 0%, rgba(101, 225, 243, 0) 70%);
}

.stonecat-faq-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.stonecat-faq-title {
  margin: 0 auto clamp(34px, 4vw, 52px);
  color: #ffffff;
  font-size: clamp(36px, 4.1vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}

.stonecat-faq-list {
  display: grid;
  gap: 14px;
}

.stonecat-faq-item {
  overflow: hidden;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 18, 58, 0.14);
}

.stonecat-faq-summary {
  min-height: 68px;
  padding: 21px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  background: #e0f8ff;
  color: #1b2d6b;
  transition: background-color 0.22s ease;
}

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

.stonecat-faq-summary h3 {
  margin: 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.stonecat-faq-chevron {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.stonecat-faq-chevron::before,
.stonecat-faq-chevron::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #1b2d6b;
  transition: transform 0.22s ease;
}

.stonecat-faq-chevron::before {
  left: 1px;
  transform: rotate(45deg);
}

.stonecat-faq-chevron::after {
  right: 1px;
  transform: rotate(-45deg);
}

.stonecat-faq-item[open] .stonecat-faq-chevron::before {
  transform: rotate(-45deg);
}

.stonecat-faq-item[open] .stonecat-faq-chevron::after {
  transform: rotate(45deg);
}

.stonecat-faq-answer {
  padding: 0 32px 22px;
  background: #ffffff;
}

.stonecat-faq-answer p {
  margin: 0;
  color: #1a2332;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.stonecat-faq-summary:hover,
.stonecat-faq-summary:focus-visible {
  background: #d6f5ff;
  outline: none;
}

@media (max-width: 768px) {
  .stonecat-faq-section {
    padding: 62px 16px 72px;
  }

  .stonecat-faq-title {
    max-width: 340px;
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.12;
  }

  .stonecat-faq-list {
    gap: 12px;
  }

  .stonecat-faq-item {
    border-radius: 12px;
  }

  .stonecat-faq-summary {
    min-height: 60px;
    padding: 18px 20px;
    gap: 14px;
  }

  .stonecat-faq-summary h3 {
    font-size: 15px;
    line-height: 1.28;
  }

  .stonecat-faq-answer {
    padding: 0 20px 18px;
  }

  .stonecat-faq-answer p {
    font-size: 14px;
    line-height: 1.58;
  }
}

/* =====================================================
   FOOTER
   Scope: solo footer Stonecat.
   ===================================================== */

.stonecat-footer {
  background: #002656;
  color: #e2f9ff;
  font-family: "Nunito", sans-serif;
  text-align: center;
  padding: clamp(44px, 5vw, 66px) 24px clamp(42px, 5vw, 58px);
}

.stonecat-footer__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stonecat-footer__logo {
  display: inline-flex;
  width: clamp(176px, 15vw, 214px);
  height: auto;
  text-decoration: none;
  margin-bottom: 30px;
}

.stonecat-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.stonecat-footer__tagline {
  margin: 0 0 24px;
  color: #6EDEC1;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.stonecat-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 0 0 54px;
}

.stonecat-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.stonecat-footer__nav a:hover,
.stonecat-footer__legal a:hover {
  color: var(--stonecat-mint, #a9fbe6);
}

.stonecat-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 42px;
}

.stonecat-footer__social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.stonecat-footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.stonecat-footer__social img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.stonecat-footer__legal {
  color: rgba(226, 249, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.stonecat-footer__legal p {
  margin: 0;
}

.stonecat-footer__legal p + p {
  margin-top: 10px;
}

.stonecat-footer__legal a {
  color: rgba(226, 249, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (max-width: 768px) {
  .stonecat-footer {
    padding: 42px 20px 44px;
  }

  .stonecat-footer__logo {
    width: 164px;
    margin-bottom: 24px;
  }

  .stonecat-footer__tagline {
    max-width: 320px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 800;
  }

  .stonecat-footer__nav {
    gap: 14px 22px;
    margin-bottom: 42px;
  }

  .stonecat-footer__nav a {
    font-size: 15px;
  }

  .stonecat-footer__social {
    gap: 16px;
    margin-bottom: 34px;
  }

  .stonecat-footer__legal {
    max-width: 330px;
    font-size: 13px;
  }
}

/* =====================================================
   ACADEMIA STONECAT — ajuste fino wordmark v18.1
   Scope: solo #academia.
   - Quita cápsula mint para integrar el título con la sección.
   - Usa SVG text de doble stroke para evitar irregularidades del text-stroke CSS.
   - Mantiene H2 real con texto accesible/SEO en .stonecat-sr-only.
   - Acerca el bonete al wordmark y controla el salto del headline desktop.
   ===================================================== */

#academia .stonecat-academy__wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(2px, 0.45vw, 6px);
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Nunito", sans-serif;
  line-height: 1;
  isolation: isolate;
}

#academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
  display: block;
  width: clamp(320px, 31vw, 455px);
  max-width: calc(100vw - 130px);
  height: auto;
  overflow: visible;
  flex: 0 1 auto;
}

#academia .stonecat-academy__wordmark-svg text {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.035em;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill;
}

#academia .stonecat-academy__wordmark-stroke-outer {
  fill: #ffffff;
  stroke: #56DDF2;
  stroke-width: 12px;
}

#academia .stonecat-academy__wordmark-stroke-inner {
  fill: #ffffff;
  stroke: #002755;
  stroke-width: 6px;
}

#academia .stonecat-academy__wordmark-icon {
  width: clamp(35px, 3.4vw, 44px);
  height: clamp(35px, 3.4vw, 44px);
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  margin-left: clamp(-68px, -4.8vw, -52px);
  transform: translate(0, 2px);
}

#academia .stonecat-academy__headline {
  max-width: none;
  font-size: clamp(40px, 3.8vw, 52px);
  line-height: 1.02;
}

#academia .stonecat-academy__headline-line,
#academia .stonecat-academy__headline-accent {
  display: block;
}

#academia .stonecat-academy__headline-line {
  color: #1b2d6b;
  white-space: nowrap;
}

#academia .stonecat-academy__headline-accent {
  color: #06a9ff;
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__wordmark {
    justify-content: center;
  }

  #academia .stonecat-academy__headline-line {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__wordmark {
    gap: 2px;
    margin-bottom: 20px;
  }

  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: clamp(248px, 68vw, 315px);
    max-width: calc(100vw - 88px);
  }

  #academia .stonecat-academy__wordmark-icon {
    width: clamp(30px, 8vw, 36px);
    height: clamp(30px, 8vw, 36px);
    transform: translate(-1px, 2px);
  }

  #academia .stonecat-academy__headline {
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.04;
  }
}

@media (max-width: 440px) {
  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: clamp(238px, 67vw, 298px);
  }
}


/* v20 — Academia refinements based on Figma notes */
#academia .stonecat-academy__wordmark {
  gap: 0;
  align-items: flex-start;
  margin-bottom: clamp(30px, 4.6vw, 58px);
}

#academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
  width: clamp(340px, 33.5vw, 448px);
  height: auto;
  overflow: visible;
  display: block;
  text-rendering: geometricPrecision;
  shape-rendering: geometricPrecision;
}

#academia .stonecat-academy__wordmark-svg text {
  letter-spacing: -0.03em;
  text-rendering: geometricPrecision;
}

#academia .stonecat-academy__wordmark-stroke-outer {
  stroke-width: 10px;
}

#academia .stonecat-academy__wordmark-stroke-inner {
  stroke-width: 5px;
}

#academia .stonecat-academy__wordmark-icon {
  width: clamp(35px, 3.1vw, 42px);
  height: clamp(35px, 3.1vw, 42px);
  margin-left: -14px;
  transform: translate(-6px, 2px);
}

#academia .stonecat-academy__headline {
  max-width: 700px;
  font-size: clamp(36px, 3.35vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow: none;
  -webkit-text-stroke: 0 transparent;
}

#academia .stonecat-academy__headline-line {
  color: #1b2d6b;
  white-space: nowrap;
}

#academia .stonecat-academy__headline-accent {
  color: #06a9ff;
}

#academia .stonecat-academy__intro {
  max-width: 740px;
  margin-top: clamp(26px, 3.2vw, 40px);
}

#academia .stonecat-academy__intro-line {
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.42;
  font-weight: 500;
}

#academia .stonecat-academy__intro-line + .stonecat-academy__intro-line {
  margin-top: 10px;
}

#academia .stonecat-academy__intro-line--single {
  white-space: nowrap;
}

#academia .stonecat-academy__intro-break {
  display: block;
}

#academia .stonecat-academy__story {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: start;
  padding: 0 clamp(28px, 3vw, 44px);
  margin: clamp(18px, 2.5vw, 30px) 0 clamp(34px, 5vw, 62px);
}

#academia .stonecat-academy__photo {
  display: none;
}

#academia .stonecat-academy__story-card {
  position: relative;
  z-index: 2;
}

#academia .stonecat-academy__story-card--plain {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

#academia .stonecat-academy__story-card p {
  margin: 0 0 18px;
  color: #1b2d6b;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.62;
  font-weight: 600;
}

#academia .stonecat-academy__story-card--strong {
  justify-self: end;
}

#academia .stonecat-academy__story-outline {
  position: absolute;
  z-index: 1;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.95;
  pointer-events: none;
}

#academia .stonecat-academy__story-outline--left {
  width: 86px;
  height: 110px;
  left: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  background-image: url("assets/academia-heart-outline-left.svg");
}

#academia .stonecat-academy__story-outline--right {
  width: 46px;
  height: 70px;
  right: 6px;
  top: 52%;
  transform: translateY(-50%) rotate(8deg);
  background-image: url("assets/academia-heart-outline-right.svg");
}

#academia .stonecat-academy__story-heart {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(27, 45, 107, 0.08));
}

#academia .stonecat-academy__story-heart--one {
  width: 30px;
  left: calc(50% - 78px);
  top: 4px;
  transform: rotate(-20deg);
}

#academia .stonecat-academy__story-heart--two {
  width: 24px;
  left: calc(50% - 8px);
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  #academia .stonecat-academy__intro-line--single {
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__story {
    padding: 0;
  }

  #academia .stonecat-academy__story-card--strong {
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__wordmark {
    gap: 0;
    margin-bottom: 18px;
  }

  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: clamp(250px, 70vw, 314px);
    max-width: calc(100vw - 78px);
  }

  #academia .stonecat-academy__wordmark-icon {
    width: clamp(28px, 7.2vw, 34px);
    height: clamp(28px, 7.2vw, 34px);
    margin-left: -22px;
    transform: translate(0, 0);
  }

  #academia .stonecat-academy__headline {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  #academia .stonecat-academy__headline-line {
    white-space: normal;
  }

  #academia .stonecat-academy__intro {
    margin-top: 22px;
  }

  #academia .stonecat-academy__intro-line,
  #academia .stonecat-academy__intro-line--single {
    font-size: 17px;
    line-height: 1.5;
    white-space: normal;
  }

  #academia .stonecat-academy__intro-break {
    display: inline;
  }

  #academia .stonecat-academy__story {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 8px;
  }

  #academia .stonecat-academy__story-outline--left {
    width: 68px;
    height: 88px;
    left: -8px;
    top: 26px;
    transform: rotate(-10deg);
  }

  #academia .stonecat-academy__story-outline--right {
    width: 38px;
    height: 58px;
    right: -6px;
    top: auto;
    bottom: 22px;
    transform: rotate(10deg);
  }

  #academia .stonecat-academy__story-heart--one {
    width: 26px;
    left: auto;
    right: 56px;
    top: -4px;
  }

  #academia .stonecat-academy__story-heart--two {
    width: 20px;
    left: 52%;
    top: auto;
    bottom: calc(50% - 14px);
    transform: translateX(-50%);
  }

  #academia .stonecat-academy__story-card p {
    font-size: 16px;
    line-height: 1.64;
  }
}

/* v21 — Academia spacing compaction: desktop + mobile */
#academia .stonecat-academy__hero--game {
  min-height: auto;
  align-items: start;
  padding-top: clamp(14px, 2vw, 26px);
  row-gap: clamp(22px, 3vw, 40px);
}

#academia .stonecat-academy__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#academia .stonecat-academy__wordmark {
  margin-bottom: clamp(16px, 2vw, 26px);
}

#academia .stonecat-academy__headline {
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(34px, 3.15vw, 46px);
  line-height: 1.02;
}

#academia .stonecat-academy__intro {
  margin-top: clamp(18px, 2.2vw, 28px);
}

#academia .stonecat-academy__intro-line + .stonecat-academy__intro-line {
  margin-top: 8px;
}

#academia .stonecat-academy__mimo {
  margin-top: clamp(22px, 3vw, 34px);
}

#academia .stonecat-academy__story {
  margin-top: clamp(8px, 1.5vw, 18px);
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__copy {
    align-items: center;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__hero--game {
    gap: 18px;
    padding-top: 0;
  }

  #academia .stonecat-academy__wordmark {
    margin-bottom: 12px;
  }

  #academia .stonecat-academy__headline {
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.04;
  }

  #academia .stonecat-academy__intro {
    margin-top: 14px;
  }

  #academia .stonecat-academy__intro-line + .stonecat-academy__intro-line {
    margin-top: 10px;
  }

  #academia .stonecat-academy__mimo {
    margin-top: 18px;
    width: min(188px, 62vw);
  }

  #academia .stonecat-academy-gameboard {
    margin-top: 6px;
  }

  #academia .stonecat-academy__story {
    margin-top: 0;
    gap: 22px;
  }
}


/* v22 — Academia microfixes: cap closer + desktop intro line */
#academia .stonecat-academy__wordmark {
  gap: 0;
}

#academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
  width: clamp(332px, 31.6vw, 432px);
}

#academia .stonecat-academy__wordmark-icon {
  margin-left: clamp(-28px, -1.9vw, -20px);
  transform: translate(-6px, 2px);
}

#academia .stonecat-academy__intro-break {
  display: block;
  white-space: nowrap;
}

@media (max-width: 768px) {
  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: clamp(246px, 67vw, 302px);
    max-width: calc(100vw - 72px);
  }

  #academia .stonecat-academy__wordmark-icon {
    margin-left: -18px;
    transform: translate(-3px, 1px);
  }

  #academia .stonecat-academy__intro-break {
    display: inline;
    white-space: normal;
  }
}


/* v23 — Academia: story block closer to first block */
#academia .stonecat-academy__story {
  margin-top: 50px;
}

@media (max-width: 768px) {
  #academia .stonecat-academy__story {
    margin-top: 50px;
  }
}


/* v24 — Academia master: remove marked icons + move story text into left block */
#academia .stonecat-academy-sticker--heart-one,
#academia .stonecat-academy-sticker--heart-two,
#academia .stonecat-academy-sticker--hearts-mini,
#academia .stonecat-academy__story-heart,
#academia .stonecat-academy__story-outline {
  display: none !important;
}

#academia .stonecat-academy__copy .stonecat-academy__story {
  display: block;
  width: min(640px, 100%);
  max-width: 640px;
  margin: 50px 0 0;
  padding: 0;
  align-self: flex-start;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card + .stonecat-academy__story-card {
  margin-top: 18px;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card p {
  margin: 0 0 16px;
  color: #1b2d6b;
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.56;
  font-weight: 600;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card p:last-child {
  margin-bottom: 0;
}

#academia .stonecat-academy__hero--game {
  margin-bottom: clamp(34px, 5vw, 66px);
}

#academia .stonecat-academy__container > .stonecat-academy__story {
  display: none !important;
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__copy .stonecat-academy__story {
    align-self: center;
    text-align: left;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__copy .stonecat-academy__story {
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }

  #academia .stonecat-academy__copy .stonecat-academy__story-card + .stonecat-academy__story-card {
    margin-top: 20px;
  }

  #academia .stonecat-academy__copy .stonecat-academy__story-card p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* v25 — Academia: second story copy in 2 desktop columns, stacked on mobile */
#academia .stonecat-academy__copy .stonecat-academy__story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(42px, 4vw, 74px);
  row-gap: 0;
  width: min(980px, 100%);
  max-width: 980px;
  margin-top: 50px;
  align-items: start;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card {
  width: 100%;
  max-width: 100%;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card + .stonecat-academy__story-card {
  margin-top: 0;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card p {
  margin: 0 0 10px;
}

#academia .stonecat-academy__copy .stonecat-academy__story-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__copy .stonecat-academy__story {
    width: 100%;
    max-width: 760px;
    column-gap: 40px;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__copy .stonecat-academy__story {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    row-gap: 22px;
    column-gap: 0;
    margin-top: 50px;
  }

  #academia .stonecat-academy__copy .stonecat-academy__story-card + .stonecat-academy__story-card {
    margin-top: 0;
  }

  #academia .stonecat-academy__copy .stonecat-academy__story-card p {
    margin-bottom: 12px;
  }
}

/* v26 — Academia: story spans full grid + badge lifted into marked area */
#academia .stonecat-academy__hero--game {
  align-items: start;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__copy {
  grid-column: 1;
  grid-row: 1;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__visual {
  grid-column: 2;
  grid-row: 1;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(420px, 1.06fr);
  column-gap: clamp(50px, 6vw, 78px);
  row-gap: 0;
  width: 100%;
  max-width: none;
  margin: 50px 0 0;
  padding: 0;
  align-items: start;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card {
  width: 100%;
  max-width: 620px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-self: start;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card--strong {
  justify-self: start;
  max-width: 650px;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card + .stonecat-academy__story-card {
  margin-top: 0;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card p {
  margin: 0 0 10px;
  color: #1b2d6b;
  font-size: clamp(16px, 1.14vw, 18px);
  line-height: 1.56;
  font-weight: 600;
}

#academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card p:last-child {
  margin-bottom: 0;
}

#academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-paw,
#academia .stonecat-academy-sticker--badge-paw {
  right: 7%;
  bottom: 28%;
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__hero--game > .stonecat-academy__copy,
  #academia .stonecat-academy__hero--game > .stonecat-academy__visual,
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    grid-column: 1;
  }

  #academia .stonecat-academy__hero--game > .stonecat-academy__copy { grid-row: 1; }
  #academia .stonecat-academy__hero--game > .stonecat-academy__visual { grid-row: 2; }
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    max-width: 760px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    grid-template-columns: 1fr;
    row-gap: 22px;
    column-gap: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 50px;
  }

  #academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card,
  #academia .stonecat-academy__hero--game > .stonecat-academy__story .stonecat-academy__story-card--strong {
    max-width: 100%;
  }

  #academia .stonecat-academy-gameboard > img.stonecat-academy-sticker--badge-paw,
  #academia .stonecat-academy-sticker--badge-paw {
    right: 4%;
    bottom: 25%;
  }
}

/* v27 — Academia: cap story distance to 65px in desktop */
@media (min-width: 1101px) {
  #academia .stonecat-academy__hero--game {
    row-gap: 0 !important;
  }

  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    margin-top: 65px !important;
    transform: translateY(-135px);
    margin-bottom: -135px;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    margin-top: 65px !important;
    transform: none;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    margin-top: 50px !important;
    transform: none;
    margin-bottom: 0;
  }
}

/* v29 — Academia benefits cards: Figma alignment + provided SVG icons */
#academia .stonecat-academy__benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 3.1vw, 56px) clamp(28px, 3.4vw, 64px);
  max-width: 1410px;
  margin: 0 auto clamp(42px, 5vw, 72px);
}

#academia .stonecat-academy-card {
  min-height: 342px;
  padding: clamp(34px, 3.2vw, 52px) clamp(34px, 3.4vw, 58px) clamp(30px, 3vw, 42px);
  border-radius: 34px;
  background: #f4f4f4;
  border: 3px solid #65e1f3;
  box-shadow: none;
  transition: none;
}

#academia .stonecat-academy-card--blue {
  border-color: #06a9ff;
}

#academia .stonecat-academy-card:hover {
  transform: none;
  box-shadow: none;
}

#academia .stonecat-academy-card__icon {
  top: 36px;
  right: 36px;
  width: 54px;
  height: 54px;
  color: #1b2d6b;
}

#academia .stonecat-academy-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#academia .stonecat-academy-card h3 {
  max-width: 510px;
  margin: 0 78px 24px 0;
  color: #1b2d6b;
  font-size: clamp(28px, 2.08vw, 38px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#academia .stonecat-academy-card p {
  max-width: 590px;
  margin: 0;
  color: #1b2d6b;
  font-size: clamp(18px, 1.38vw, 24px);
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #academia .stonecat-academy__benefits {
    max-width: 980px;
    gap: 24px;
  }

  #academia .stonecat-academy-card {
    min-height: 300px;
    padding: 30px 30px 28px;
    border-radius: 28px;
  }

  #academia .stonecat-academy-card__icon {
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
  }

  #academia .stonecat-academy-card h3 {
    margin-right: 66px;
    margin-bottom: 18px;
    font-size: clamp(25px, 2.6vw, 32px);
  }

  #academia .stonecat-academy-card p {
    font-size: clamp(17px, 1.85vw, 20px);
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  #academia .stonecat-academy-card {
    min-height: auto;
    padding: 24px 24px 22px;
    border-width: 2px;
    border-radius: 24px;
  }

  #academia .stonecat-academy-card__icon {
    top: 22px;
    right: 22px;
    width: 42px;
    height: 42px;
  }

  #academia .stonecat-academy-card h3 {
    max-width: none;
    margin: 0 54px 16px 0;
    font-size: 22px;
    line-height: 1.06;
  }

  #academia .stonecat-academy-card p {
    max-width: none;
    font-size: 16px;
    line-height: 1.56;
  }
}


/* v30 — Academia exclusive members sub-section refined to match Figma */
#academia .stonecat-academy__exclusive {
  position: relative;
  display: block;
  max-width: 1220px;
  margin: clamp(26px, 3vw, 38px) auto 0;
  padding: clamp(68px, 7vw, 86px) clamp(28px, 4vw, 48px) clamp(34px, 3.8vw, 42px);
  border-radius: 30px;
  background: #1f347e;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(27, 45, 107, 0.12);
  overflow: visible;
}

#academia .stonecat-academy__avatars,
#academia .stonecat-academy__exclusive > svg {
  display: none;
}

#academia .stonecat-academy__avatars-image {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(260px, 28vw, 360px);
  transform: translate(-50%, -47%);
  display: block;
  height: auto;
  z-index: 3;
}

#academia .stonecat-academy__exclusive-copy {
  max-width: 920px;
  margin: 0 auto;
}

#academia .stonecat-academy__exclusive-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

#academia .stonecat-academy__exclusive h3 {
  margin: 0;
  color: #65e1f3;
  font-size: clamp(28px, 3.1vw, 38px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#academia .stonecat-academy__exclusive-star {
  width: clamp(38px, 3.5vw, 52px);
  height: clamp(38px, 3.5vw, 52px);
  flex: 0 0 auto;
}

#academia .stonecat-academy__exclusive p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.52;
  font-weight: 500;
}

#academia .stonecat-academy__exclusive p + p {
  margin-top: 4px;
}

#academia .stonecat-academy__closing {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  margin-top: clamp(44px, 5vw, 60px);
  padding-top: clamp(18px, 3vw, 32px);
  gap: 0;
  min-height: clamp(170px, 19vw, 230px);
}

#academia .stonecat-academy__closing-photo {
  position: absolute;
  right: clamp(6px, 4.6vw, 40px);
  top: clamp(-168px, -11vw, -120px);
  width: clamp(190px, 16vw, 268px);
  border-radius: 28px;
  transform: rotate(12deg);
  box-shadow: 0 18px 32px rgba(27, 45, 107, 0.12);
}

#academia .stonecat-academy__closing-heart {
  position: absolute;
  right: clamp(12px, 3vw, 46px);
  top: clamp(-18px, 4vw, 26px);
  width: clamp(46px, 4.2vw, 66px);
  height: auto;
  opacity: 0.95;
}

#academia .stonecat-academy__closing p {
  margin: 0;
  max-width: 980px;
  color: #1b2d6b;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.03em;
}

#academia .stonecat-academy__closing-emojis {
  margin-left: 6px;
}

@media (max-width: 1024px) {
  #academia .stonecat-academy__exclusive {
    max-width: 100%;
    padding-left: 26px;
    padding-right: 26px;
  }

  #academia .stonecat-academy__exclusive-heading {
    gap: 14px;
  }

  #academia .stonecat-academy__exclusive p {
    font-size: clamp(16px, 1.9vw, 19px);
  }

  #academia .stonecat-academy__closing {
    min-height: 190px;
  }

  #academia .stonecat-academy__closing-photo {
    right: 0;
    width: clamp(170px, 20vw, 220px);
    top: -126px;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__exclusive {
    margin-top: 22px;
    padding: 54px 18px 24px;
    border-radius: 24px;
  }

  #academia .stonecat-academy__avatars-image {
    width: min(88%, 320px);
    transform: translate(-50%, -42%);
  }

  #academia .stonecat-academy__exclusive-heading {
    gap: 10px;
    margin-bottom: 12px;
  }

  #academia .stonecat-academy__exclusive h3 {
    font-size: 22px;
  }

  #academia .stonecat-academy__exclusive-star {
    width: 34px;
    height: 34px;
  }

  #academia .stonecat-academy__exclusive p {
    font-size: 15px;
    line-height: 1.48;
  }

  #academia .stonecat-academy__exclusive p + p {
    margin-top: 6px;
  }

  #academia .stonecat-academy__closing {
    margin-top: 28px;
    padding-top: 0;
    min-height: auto;
  }

  #academia .stonecat-academy__closing-photo {
    position: static;
    width: min(64%, 220px);
    transform: rotate(8deg);
    margin: 0 0 14px auto;
  }

  #academia .stonecat-academy__closing-heart {
    width: 40px;
    top: 34px;
    right: 10px;
  }

  #academia .stonecat-academy__closing p {
    max-width: 340px;
    font-size: 21px;
    line-height: 1.18;
  }
}

/* v31 — Academia exclusive micro-adjustments */
#academia .stonecat-academy__avatars-image {
  width: clamp(234px, 25.2vw, 324px); /* 10% smaller desktop */
}

#academia .stonecat-academy__closing {
  margin-top: clamp(30px, 3.5vw, 42px); /* ~30% less than v30 */
  padding-top: 0;
  min-height: clamp(160px, 17vw, 210px);
}

#academia .stonecat-academy__closing-photo {
  top: clamp(-238px, -15.5vw, -176px); /* move photo above where navy card starts */
  right: clamp(8px, 4.4vw, 34px);
  width: clamp(184px, 15.2vw, 248px);
}

#academia .stonecat-academy__closing-heart {
  top: clamp(-52px, 1vw, -6px);
  right: clamp(18px, 3.6vw, 52px);
}

@media (max-width: 768px) {
  #academia .stonecat-academy__avatars-image {
    width: min(66%, 240px); /* 25% smaller mobile */
    transform: translate(-50%, -42%);
  }

  #academia .stonecat-academy__exclusive {
    padding-top: 48px;
  }

  #academia .stonecat-academy__closing {
    margin-top: 20px; /* ~30% less */
    min-height: 230px;
    padding-top: 0;
  }

  #academia .stonecat-academy__closing-photo {
    position: absolute;
    top: -128px;
    right: 16px;
    width: min(56%, 210px);
    margin: 0;
    transform: rotate(8deg);
  }

  #academia .stonecat-academy__closing-heart {
    width: 38px;
    top: -10px;
    right: 18px;
  }

  #academia .stonecat-academy__closing p {
    padding-top: 128px;
  }
}


/* v32 — Academia proof/CTA assets from Figma */
#academia .stonecat-academy__cta-wrap--proof {
  position: relative;
  margin-top: clamp(10px, 1.6vw, 18px);
  margin-bottom: clamp(34px, 4vw, 50px);
  min-height: clamp(310px, 24vw, 400px);
  display: grid;
  align-items: start;
  justify-items: center;
}

#academia .stonecat-academy__proof-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  display: grid;
  justify-items: center;
}

#academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
  min-width: min(100%, 796px);
  min-height: clamp(72px, 5vw, 108px);
  padding: clamp(20px, 2vw, 30px) clamp(36px, 3vw, 54px);
  font-size: clamp(24px, 2.2vw, 33px);
  line-height: 1.05;
  box-shadow: 0 18px 36px rgba(47, 184, 255, 0.16), inset 0 -2px 0 rgba(27, 45, 107, 0.12);
}

#academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
  max-width: 900px;
  margin-top: clamp(88px, 8vw, 118px);
  color: rgba(27, 45, 107, 0.86);
  font-size: clamp(26px, 2.45vw, 36px);
  line-height: 1.3;
  font-weight: 500;
}

#academia .stonecat-academy__proof-photo-left,
#academia .stonecat-academy__proof-mascot {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  pointer-events: none;
}

#academia .stonecat-academy__proof-photo-left {
  left: clamp(8px, 2.2vw, 26px);
  top: clamp(122px, 9.7vw, 168px);
  width: clamp(176px, 18vw, 342px);
  transform: rotate(-8deg);
}

#academia .stonecat-academy__proof-mascot {
  right: clamp(12px, 2vw, 20px);
  top: clamp(106px, 8.5vw, 152px);
  width: clamp(176px, 16.8vw, 300px);
}

#academia .stonecat-academy__benefits {
  margin-top: clamp(6px, 1vw, 12px);
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__cta-wrap--proof {
    min-height: 330px;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
    min-width: min(100%, 680px);
    font-size: clamp(22px, 2.8vw, 28px);
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    max-width: 700px;
    margin-top: 76px;
    font-size: clamp(22px, 2.8vw, 30px);
  }

  #academia .stonecat-academy__proof-photo-left {
    left: 0;
    width: clamp(158px, 21vw, 250px);
    top: 150px;
  }

  #academia .stonecat-academy__proof-mascot {
    right: 0;
    width: clamp(150px, 19vw, 240px);
    top: 138px;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__cta-wrap--proof {
    min-height: auto;
    margin-top: 10px;
    margin-bottom: 24px;
    row-gap: 18px;
  }

  #academia .stonecat-academy__proof-center {
    order: 1;
    max-width: 100%;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
    min-width: 100%;
    min-height: 62px;
    padding: 18px 22px;
    font-size: 20px;
    text-align: center;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    max-width: 330px;
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.38;
  }

  #academia .stonecat-academy__proof-photo-left,
  #academia .stonecat-academy__proof-mascot {
    position: static;
    pointer-events: none;
  }

  #academia .stonecat-academy__proof-photo-left {
    order: 2;
    align-self: start;
    justify-self: start;
    width: min(48vw, 220px);
    transform: rotate(-8deg);
    margin: 4px 0 0 10px;
  }

  #academia .stonecat-academy__proof-mascot {
    order: 3;
    justify-self: end;
    width: min(42vw, 190px);
    margin: -10px 6px 0 0;
  }
}


/* v33 — remove kid photo and shrink CTA ~50% */
#academia .stonecat-academy__closing {
  margin-top: clamp(20px, 2.8vw, 32px);
  min-height: auto;
  padding-top: 0;
}

#academia .stonecat-academy__closing-photo,
#academia .stonecat-academy__closing-heart {
  display: none !important;
}

#academia .stonecat-academy__closing p {
  padding-top: 0 !important;
  max-width: 760px;
}

#academia .stonecat-academy__cta-wrap--proof {
  min-height: clamp(240px, 18vw, 300px);
}

#academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
  min-width: min(100%, 400px);
  min-height: 54px;
  padding: 14px 26px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.1;
  gap: 8px;
}

#academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
  margin-top: clamp(58px, 5.5vw, 76px);
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__cta-wrap--proof {
    min-height: 260px;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
    min-width: min(100%, 360px);
    min-height: 52px;
    padding: 14px 22px;
    font-size: 17px;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    margin-top: 54px;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__cta-wrap--proof {
    min-height: auto;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
    min-width: min(100%, 300px);
    min-height: 50px;
    padding: 14px 18px;
    font-size: 16px;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    margin-top: 14px;
  }
}

/* v34 — Academia: tighten desktop cards + reduce proof gap + mobile overlap with mascot */
#academia .stonecat-academy__cta-wrap--proof {
  margin-top: clamp(4px, 0.7vw, 8px);
  margin-bottom: clamp(14px, 1.8vw, 22px);
  min-height: clamp(214px, 16.5vw, 272px);
}

#academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
  margin-top: clamp(28px, 2.8vw, 40px);
}

#academia .stonecat-academy__proof-photo-left {
  top: clamp(82px, 6.4vw, 118px);
  width: clamp(176px, 17.5vw, 318px);
}

#academia .stonecat-academy__benefits {
  gap: clamp(22px, 2.4vw, 38px) clamp(24px, 2.6vw, 42px);
  margin: 0 auto clamp(42px, 5vw, 72px);
}

#academia .stonecat-academy-card {
  min-height: 274px;
  padding: clamp(28px, 2.4vw, 40px) clamp(30px, 2.8vw, 44px) clamp(24px, 2.3vw, 34px);
}

#academia .stonecat-academy-card__icon {
  top: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
}

#academia .stonecat-academy-card h3 {
  margin: 0 74px 18px 0;
  font-size: clamp(26px, 1.86vw, 34px);
  line-height: 1.05;
}

#academia .stonecat-academy-card p {
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.52;
}

@media (max-width: 1100px) {
  #academia .stonecat-academy__cta-wrap--proof {
    min-height: 238px;
    margin-bottom: 18px;
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    margin-top: 34px;
  }

  #academia .stonecat-academy__proof-photo-left {
    top: 118px;
    width: clamp(154px, 19vw, 224px);
  }

  #academia .stonecat-academy__benefits {
    gap: 22px;
  }

  #academia .stonecat-academy-card {
    min-height: 270px;
    padding: 28px 28px 24px;
  }

  #academia .stonecat-academy-card__icon {
    top: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
  }

  #academia .stonecat-academy-card h3 {
    margin-right: 60px;
    margin-bottom: 16px;
    font-size: clamp(24px, 2.35vw, 30px);
  }

  #academia .stonecat-academy-card p {
    font-size: clamp(16px, 1.75vw, 19px);
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__cta-wrap--proof {
    margin-bottom: 0;
    row-gap: 16px;
  }

  #academia .stonecat-academy__proof-photo-left {
    margin-top: 0;
  }

  #academia .stonecat-academy__proof-mascot {
    position: static;
    z-index: 1;
    margin: -10px 6px -74px 0;
  }

  #academia .stonecat-academy__benefits {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }

  #academia .stonecat-academy__benefits > .stonecat-academy-card:first-child {
    position: relative;
    z-index: 2;
  }
}

/* v35 — Academia: smaller proof claim + tighter desktop card padding */
@media (min-width: 769px) {
  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    max-width: 760px;
    margin-top: clamp(22px, 2.1vw, 32px);
    font-size: clamp(22px, 1.55vw, 28px);
    line-height: 1.28;
  }

  #academia .stonecat-academy__benefits {
    gap: clamp(20px, 2vw, 32px) clamp(22px, 2.25vw, 36px);
  }

  #academia .stonecat-academy-card {
    min-height: 242px;
    padding: clamp(22px, 1.85vw, 30px) clamp(26px, 2.2vw, 36px) clamp(20px, 1.7vw, 28px);
  }

  #academia .stonecat-academy-card__icon {
    top: 26px;
    right: 28px;
    width: 48px;
    height: 48px;
  }

  #academia .stonecat-academy-card h3 {
    margin: 0 66px 14px 0;
    font-size: clamp(25px, 1.72vw, 32px);
    line-height: 1.04;
  }

  #academia .stonecat-academy-card p {
    font-size: clamp(16px, 1.06vw, 20px);
    line-height: 1.46;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof {
    max-width: 620px;
    margin-top: 28px;
    font-size: clamp(20px, 2.15vw, 24px);
  }

  #academia .stonecat-academy-card {
    min-height: 236px;
    padding: 24px 26px 22px;
  }

  #academia .stonecat-academy-card__icon {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }

  #academia .stonecat-academy-card h3 {
    margin-right: 56px;
    margin-bottom: 12px;
    font-size: clamp(23px, 2.15vw, 28px);
  }

  #academia .stonecat-academy-card p {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.44;
  }
}


/* v36 — Academia: strengthen CTA desktop only */
@media (min-width: 769px) {
  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__button {
    min-width: min(100%, 520px);
    min-height: 64px;
    padding: 18px 34px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.08;
  }
}


/* v37 — Academia closing phrase line control */
@media (min-width: 769px) {
  #academia .stonecat-academy__closing p {
    max-width: none;
    white-space: nowrap;
  }

  #academia .stonecat-academy__closing-care,
  #academia .stonecat-academy__closing-tray {
    display: inline;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__closing-care {
    display: block;
    white-space: nowrap;
  }

  #academia .stonecat-academy__closing-tray {
    display: block;
  }
}

/* v38 — Academia mobile story separator + tighter closing copy */
#academia .stonecat-academy__story-mobile-separator {
  display: none;
}

#academia .stonecat-academy__closing-main,
#academia .stonecat-academy__closing-subline {
  display: block;
}

#academia .stonecat-academy__closing-subline {
  margin-top: 8px;
}

@media (min-width: 769px) {
  #academia .stonecat-academy__closing-main {
    white-space: nowrap;
  }

  #academia .stonecat-academy__closing-subline {
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__hero--game > .stonecat-academy__story {
    row-gap: 16px;
    margin-top: 40px !important;
  }

  #academia .stonecat-academy__story-mobile-separator {
    display: block;
    width: min(100%, 216px);
    margin: 2px auto 0;
    border-radius: 24px;
    justify-self: center;
    box-shadow: 0 10px 22px rgba(27, 45, 107, 0.08);
  }

  #academia .stonecat-academy__exclusive-heading {
    justify-content: center;
  }

  #academia .stonecat-academy__exclusive-star {
    display: none;
  }

  #academia .stonecat-academy__closing {
    margin-top: 18px;
  }

  #academia .stonecat-academy__closing p {
    max-width: 350px;
    line-height: 1.08;
  }

  #academia .stonecat-academy__closing-subline {
    margin-top: 3px;
  }

  #academia .stonecat-academy__closing-care {
    display: block;
    white-space: nowrap;
  }

  #academia .stonecat-academy__closing-tray {
    display: block;
  }
}

/* v40 — Academia mobile: remove repeated photo in proof block + alpha shadow for separator */
@media (max-width: 768px) {
  #academia .stonecat-academy__story-mobile-separator {
    box-shadow: none;
    filter: drop-shadow(0 12px 18px rgba(27, 45, 107, 0.10));
  }

  #academia .stonecat-academy__cta-wrap--proof .stonecat-academy__proof-photo-left {
    display: none;
  }

  #academia .stonecat-academy__cta-wrap--proof {
    row-gap: 14px;
  }
}

/* v41 — Academia mobile hero lockup: wordmark + cap + controlled headline lines */
#academia .stonecat-academy__headline-join {
  display: block;
}

#academia .stonecat-academy__headline-line--que {
  display: inline;
  color: #1b2d6b;
}

#academia .stonecat-academy__headline-join .stonecat-academy__headline-accent {
  display: inline;
}

@media (min-width: 769px) {
  #academia .stonecat-academy__headline-line--base,
  #academia .stonecat-academy__headline-join {
    display: block;
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__copy {
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
  }

  #academia .stonecat-academy__wordmark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: clamp(242px, 66vw, 292px);
    max-width: calc(100vw - 112px);
  }

  #academia .stonecat-academy__wordmark-icon {
    width: clamp(26px, 6.7vw, 30px);
    height: clamp(26px, 6.7vw, 30px);
    margin-left: -38px;
    transform: translate(-2px, -1px) rotate(0.001deg);
  }

  #academia .stonecat-academy__headline {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(31px, 8.45vw, 35px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    text-align: center;
  }

  #academia .stonecat-academy__headline-line,
  #academia .stonecat-academy__headline-accent {
    white-space: normal;
  }

  #academia .stonecat-academy__headline-line--base,
  #academia .stonecat-academy__headline-join {
    display: block;
  }

  #academia .stonecat-academy__headline-join {
    white-space: nowrap;
  }

  #academia .stonecat-academy__intro {
    margin-top: 18px;
  }
}

@media (max-width: 374px) {
  #academia .stonecat-academy__headline {
    font-size: clamp(29px, 8.25vw, 31px);
    letter-spacing: -0.055em;
  }

  #academia .stonecat-academy__wordmark .stonecat-academy__wordmark-svg {
    width: 238px;
  }

  #academia .stonecat-academy__wordmark-icon {
    margin-left: -36px;
  }
}


/* v42 — Academia: mobile headline breathing + desktop cap closer */
@media (min-width: 769px) {
  #academia .stonecat-academy__wordmark-icon {
    margin-left: clamp(-46px, -3.2vw, -34px);
    transform: translate(-6px, 2px) rotate(0.001deg);
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__headline {
    line-height: 1.09;
    overflow: visible;
  }

  #academia .stonecat-academy__headline-join {
    margin-top: 5px;
    line-height: 1.08;
    padding-bottom: 2px;
  }

  #academia .stonecat-academy__headline-line--base {
    line-height: 1.02;
  }
}

/* v43 — Academia final lockup patch: scoped only to #academia */
@media (min-width: 769px) {
  #academia .stonecat-academy__wordmark {
    align-items: center;
  }

  #academia .stonecat-academy__wordmark-icon {
    margin-left: clamp(-52px, -3.6vw, -38px);
    transform: translate(-8px, 6px) rotate(0.001deg);
  }
}

@media (max-width: 768px) {
  #academia .stonecat-academy__headline {
    line-height: 1.1;
    overflow: visible;
  }

  #academia .stonecat-academy__headline-join {
    display: block;
    margin-top: 7px;
    line-height: 1.12;
    padding-bottom: 4px;
  }

  #academia .stonecat-academy__headline-line--base {
    line-height: 1.03;
  }
}

/* v44 — Academia mobile intro copy patch: scoped only to #academia */
@media (max-width: 768px) {
  #academia .stonecat-academy__intro-line--single .stonecat-academy__intro-mobile-second {
    display: block;
    margin-top: 3px;
    white-space: nowrap;
  }

  #academia .stonecat-academy__intro-break::before {
    content: " ";
  }
}

@media (max-width: 374px) {
  #academia .stonecat-academy__intro-line--single {
    font-size: 16px;
  }
}


/* v47 — Navigation anchor scroll patch: scoped to landing navigation */
html {
  scroll-behavior: smooth;
}

#inicio,
#problema,
#solucion,
#beneficios,
#como-usarla,
#productos,
#academia,
#donde-comprar,
#preguntas-frecuentes,
#contacto {
  scroll-margin-top: 28px;
}

.stonecat-nav__list a:focus-visible,
.stonecat-footer__nav a:focus-visible,
.stonecat-logo:focus-visible {
  outline: 3px solid rgba(101, 225, 243, 0.75);
  outline-offset: 4px;
  border-radius: 999px;
}

@media (min-width: 1201px) {
  .stonecat-nav__list {
    gap: 28px;
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .stonecat-nav__list {
    gap: 16px;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 1024px) {
  #inicio,
  #problema,
  #solucion,
  #beneficios,
  #como-usarla,
  #productos,
  #academia,
  #donde-comprar,
  #preguntas-frecuentes,
  #contacto {
    scroll-margin-top: 18px;
  }
}

/* v48 — Sticky navigation patch: keep landing navigation available while scrolling */
:root {
  --stonecat-sticky-header-offset: 132px;
}

.stonecat-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.stonecat-header.is-scrolled {
  background: rgba(251, 249, 247, 0.96);
  box-shadow: 0 10px 28px rgba(13, 26, 65, 0.10);
}

.stonecat-header.is-scrolled .stonecat-topbar {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.stonecat-header.is-scrolled .stonecat-header__inner {
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 12px;
}

.stonecat-header.is-scrolled .stonecat-logo {
  width: 148px;
  height: 46px;
}

.stonecat-header.is-scrolled .stonecat-nav {
  margin-top: 12px;
}

.stonecat-header.is-scrolled .stonecat-nav__list {
  min-height: 50px;
  padding-top: 12px;
  padding-bottom: 12px;
}

#inicio,
#problema,
#solucion,
#beneficios,
#como-usarla,
#productos,
#academia,
#donde-comprar,
#preguntas-frecuentes,
#contacto {
  scroll-margin-top: var(--stonecat-sticky-header-offset);
}

@media (min-width: 1025px) {
  .stonecat-header.is-scrolled .stonecat-nav__list {
    gap: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .stonecat-header.is-scrolled .stonecat-nav__list a {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  :root {
    --stonecat-sticky-header-offset: 104px;
  }

  .stonecat-header.is-scrolled .stonecat-topbar {
    height: 0;
  }

  .stonecat-header.is-scrolled .stonecat-header__inner {
    min-height: 78px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  .stonecat-header.is-scrolled .stonecat-logo {
    width: 124px;
    height: 38px;
  }

  .stonecat-header.is-scrolled .stonecat-menu-button {
    top: 14px;
  }

  .stonecat-header.is-scrolled .stonecat-nav {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  :root {
    --stonecat-sticky-header-offset: 96px;
  }
}
