﻿/* SMM page */

.smm-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--navbar-h) + var(--sp-12));
  padding-bottom: var(--sp-12);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 9, 9, 0.94) 0%, rgba(10, 9, 9, 0.78) 44%, rgba(10, 9, 9, 0.22) 100%),
    url("../img/smm/hero-social-desk.webp") center right / cover no-repeat,
    radial-gradient(ellipse 900px 520px at 82% 18%, rgba(242, 169, 59, 0.11), transparent 62%),
    radial-gradient(ellipse 760px 420px at 12% 90%, rgba(214, 69, 51, 0.08), transparent 60%),
    var(--color-bg);
}

.smm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 62%, var(--color-bg) 100%);
}

.smm-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}

@media (min-width: 960px) {
  .smm-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: var(--sp-16);
  }
}

.smm-hero__copy {
  max-width: 680px;
  padding-block: var(--sp-8);
}

.smm-hero__eyebrow,
.smm-section__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-5);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.smm-hero__title {
  font-size: clamp(2.7rem, 7.6vw, 6rem);
  line-height: 0.98;
  max-width: 12ch;
  margin-bottom: var(--sp-6);
}

.smm-hero__title-em {
  display: block;
  padding-bottom: 0.17em;
  font-style: italic;
  background: linear-gradient(100deg, #f2a93b 0%, #d97706 55%, #d64533 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smm-hero__sub {
  max-width: 54ch;
  color: rgba(244, 237, 226, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.smm-hero__sub strong {
  color: var(--color-text);
  font-weight: 500;
}

.smm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.smm-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  max-width: 640px;
}

.smm-hero__fact {
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(244, 237, 226, 0.12);
}

.smm-hero__fact dt {
  margin-bottom: 6px;
  color: var(--color-text-muted);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.smm-hero__fact dd {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
}

.smm-hero__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  min-width: 0;
  min-height: 420px;
  display: none;
}

.smm-hero__img {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 36px 110px -42px rgba(0, 0, 0, 0.92);
}

.smm-hero__note {
  position: relative;
  max-width: 260px;
  padding: var(--sp-4);
  border: 1px solid rgba(242, 169, 59, 0.28);
  border-radius: var(--r-md);
  background: rgba(10, 9, 9, 0.72);
  backdrop-filter: blur(16px);
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.smm-hero__note span {
  display: block;
  margin-bottom: var(--sp-2);
  color: var(--color-accent);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.smm-hero__note strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.15;
  font-weight: 500;
}

@media (min-width: 960px) {
  .smm-hero__visual {
    display: block;
    min-height: 0;
    align-self: end;
    margin-bottom: var(--sp-8);
  }

  .smm-hero__img {
    display: none;
  }
}

@media (max-width: 720px) {
  .smm-hero__facts {
    grid-template-columns: 1fr;
  }

  .smm-hero__visual {
    min-height: auto;
  }

  .smm-hero__note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: var(--sp-4);
  }
}

/* â”€â”€ Manifesto wiper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.smm-manifesto {
  border-block: 1px solid var(--color-border);
  padding-block: var(--sp-16) var(--sp-10);
  background: #0d0c0b;
  overflow: hidden;
}

.smm-manifesto__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.smm-manifesto__stage {
  position: relative;
}

.smm-manifesto__phrase {
  position: relative;
  overflow: hidden;
}

.smm-manifesto__text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 13vw, 9.5rem);
  line-height: 0.97;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text);
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

.smm-manifesto__cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0;
  will-change: left, opacity;
}

.smm-manifesto__sub {
  margin-top: var(--sp-5);
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 56ch;
  line-height: 1.6;
}

.smm-manifesto__dots {
  display: flex;
  gap: var(--sp-2);
}

.smm-manifesto__dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(244, 237, 226, 0.18);
  transition: background 0.35s, width 0.35s;
}

.smm-manifesto__dot.is-active {
  width: 32px;
  background: var(--color-accent);
}

.smm-section {
  padding-block: var(--sp-20);
}

@media (min-width: 768px) {
  .smm-section {
    padding-block: var(--sp-32);
  }
}

.smm-section--surface {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.smm-section__head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 820px;
  margin-bottom: var(--sp-10);
}

.smm-section__title {
  max-width: 13ch;
}

.smm-section__lead {
  color: var(--color-text-muted);
  max-width: 60ch;
  font-size: 1rem;
}

/* â”€â”€ Scontrini pricing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.smm-receipts {
  padding-top: var(--sp-4);
}

@media (min-width: 820px) {
  .smm-receipts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--sp-5);
    align-items: start;
  }
}

@media (max-width: 819px) {
  .smm-receipts {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: var(--sp-4);
    padding-bottom: var(--sp-3);
    scrollbar-width: none;
  }

  .smm-receipts::-webkit-scrollbar {
    display: none;
  }

  .smm-receipt {
    scroll-snap-align: center;
    flex: 0 0 min(82vw, 300px);
  }
}

.smm-receipt {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  background: #0d0c0b;
  border: 1px solid rgba(244, 237, 226, 0.12);
  border-radius: 3px;
  font-family: var(--font-mono);
  box-shadow: 0 12px 48px -24px rgba(0, 0, 0, 0.8);
}

.smm-receipt--featured {
  border-color: rgba(242, 169, 59, 0.48);
  background:
    linear-gradient(180deg, rgba(242, 169, 59, 0.06), transparent 55%),
    #0d0c0b;
  box-shadow:
    0 0 0 1px rgba(242, 169, 59, 0.1) inset,
    0 20px 72px -28px rgba(242, 169, 59, 0.45);
}

.smm-receipt__stamp {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-4);
  padding: 4px 7px;
  border: 2px solid var(--color-accent);
  border-radius: 3px;
  color: var(--color-accent);
  font-size: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(5deg);
}

.smm-receipt__shop {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}

.smm-receipt__dash,
.smm-receipt__divider {
  display: block;
  color: rgba(244, 237, 226, 0.14);
  font-size: 0.7rem;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: var(--sp-4);
}

.smm-receipt__item-name {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}

.smm-receipt__price {
  font-family: var(--font-mono);
  font-size: clamp(3.4rem, 9vw, 5.2rem);
  line-height: 1;
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smm-receipt__price span {
  font-size: 0.48em;
  opacity: 0.65;
}

.smm-receipt__unit {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-4);
}

.smm-receipt__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.smm-receipt__list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-left: var(--sp-4);
  position: relative;
  line-height: 1.5;
}

.smm-receipt__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.smm-receipt__meta {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 2;
}

/* â”€â”€ Metodo sticky scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.smm-metodo-section {
  padding-block: 0;
}

.smm-metodo {
  display: grid;
  gap: var(--sp-8);
  align-items: start;
}

@media (min-width: 900px) {
  .smm-metodo {
    grid-template-columns: 1fr 1fr;
  }

  .smm-metodo__left {
    position: relative;
  }

  .smm-metodo__sticky {
    position: sticky;
    top: calc(var(--navbar-h, 68px) + var(--sp-8));
    padding-block: var(--sp-16);
  }
}

@media (max-width: 899px) {
  .smm-metodo__sticky {
    padding-block: var(--sp-10) var(--sp-4);
  }
}

.smm-metodo__visual {
  margin: var(--sp-6) 0 0;
  border: 1px solid rgba(244, 237, 226, 0.12);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0c0b0a;
  box-shadow: 0 34px 110px -70px rgba(0, 0, 0, 0.94);
}

.smm-metodo__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.smm-metodo__right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-left: var(--sp-8);
  padding-block: var(--sp-10) var(--sp-16);
}

.smm-metodo__rail {
  position: absolute;
  left: 14px;
  top: var(--sp-10);
  bottom: var(--sp-16);
  width: 1px;
  background: linear-gradient(180deg, rgba(242, 169, 59, 0.5), rgba(244, 237, 226, 0.08));
}

.smm-metodo__card {
  position: relative;
  padding: var(--sp-6);
  border: 1px solid rgba(244, 237, 226, 0.1);
  border-radius: var(--r-md);
  background: var(--color-bg);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.smm-metodo__card::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(242, 169, 59, 0.55);
  background: #11100f;
}

.smm-metodo__card.is-active {
  border-color: rgba(242, 169, 59, 0.35);
  background:
    linear-gradient(145deg, rgba(242, 169, 59, 0.07), transparent 55%),
    var(--color-bg);
}

.smm-metodo__num {
  display: block;
  color: var(--color-accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-3);
}

.smm-metodo__card h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  margin-bottom: var(--sp-3);
}

.smm-metodo__card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.smm-metodo__meta {
  display: inline-block;
  margin-top: var(--sp-4);
  color: var(--color-accent);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* â”€â”€ Poster branding â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.smm-poster-wrap {
  border-block: 1px solid var(--color-border);
}

.smm-poster {
  display: flex;
  flex-direction: column;
}

.smm-poster__img-wrap {
  margin: 0;
  flex-shrink: 0;
}

.smm-poster__img-wrap img {
  display: block;
  width: 100%;
  height: 52vw;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.smm-poster__overlay {
  padding-block: var(--sp-10) var(--sp-12);
  padding-inline: var(--sp-5);
  background:
    linear-gradient(180deg, rgba(10, 9, 9, 0.88), rgba(10, 9, 9, 0.98) 100%),
    #0f0e0d;
}

@media (min-width: 900px) {
  .smm-poster {
    flex-direction: row;
    min-height: 640px;
  }

  .smm-poster__img-wrap {
    width: 50%;
  }

  .smm-poster__img-wrap img {
    height: 100%;
    max-height: none;
  }

  .smm-poster__overlay {
    width: 50%;
    display: flex;
    align-items: center;
    padding: var(--sp-12) var(--sp-10);
    background:
      linear-gradient(135deg, rgba(242, 169, 59, 0.07), transparent 55%),
      #0f0e0d;
  }
}

.smm-poster__content {
  max-width: 520px;
}

.smm-poster__title {
  font-size: clamp(1.75rem, 4vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  max-width: 15ch;
}

.smm-poster__desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 54ch;
  margin-bottom: var(--sp-6);
}

.smm-poster__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(242, 169, 59, 0.3);
  border-radius: var(--r-md);
  background: rgba(242, 169, 59, 0.05);
  width: fit-content;
}

.smm-poster__amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1;
  background: var(--gradient-amber);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smm-poster__note {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.smm-poster__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.smm-poster__tags li {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.smm-faq-section .smm-section__head {
  margin-bottom: var(--sp-7);
}

.smm-faq__scroll {
  display: flex;
  overflow-x: auto;
  gap: var(--sp-4);
  padding-inline: max(var(--sp-5), calc((100vw - min(1120px, 100vw - 40px)) / 2));
  padding-bottom: var(--sp-5);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.smm-faq__scroll::-webkit-scrollbar {
  display: none;
}

.smm-faq__card {
  position: relative;
  flex: 0 0 min(85vw, 500px);
  scroll-snap-align: center;
  padding: var(--sp-6);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  background:
    linear-gradient(145deg, rgba(242, 169, 59, 0.08), transparent 48%),
    #121110;
}

.smm-faq__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.smm-faq__card-code {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--color-text-dim);
}

.smm-faq__card-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--color-accent);
  letter-spacing: 0.14em;
}

.smm-faq__card-q {
  margin-bottom: var(--sp-3);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.smm-faq__card-a {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.smm-faq__card-corner {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(244, 237, 226, 0.15);
  border-left: 1px solid rgba(244, 237, 226, 0.15);
  border-bottom-right-radius: var(--r-md);
  opacity: 0.45;
}

.smm-faq__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.smm-faq__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.smm-faq__dot {
  width: 24px;
  height: 4px;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(244, 237, 226, 0.22);
  transition: width .3s ease, background .3s ease;
}

.smm-faq__dot.is-active {
  width: 36px;
  background: var(--color-accent);
}

.smm-faq__counter {
  color: var(--color-text-dim);
  letter-spacing: 0.12em;
  font-size: 0.62rem;
}

.smm-cta {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-20);
  background:
    linear-gradient(135deg, rgba(242, 169, 59, 0.14), transparent 48%),
    linear-gradient(90deg, #0f0e0d, #17110a 54%, #0f0e0d),
    var(--color-surface);
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .smm-cta {
    padding-block: var(--sp-32);
  }
}

.smm-cta__inner {
  display: grid;
  gap: var(--sp-8);
  align-items: center;
}

@media (min-width: 860px) {
  .smm-cta__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

.smm-cta__title {
  max-width: 15ch;
  margin-bottom: var(--sp-5);
}

.smm-cta__sub {
  max-width: 52ch;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-8);
}

.smm-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

.smm-cta__micro {
  color: var(--color-text-dim);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.smm-cta__visual {
  display: grid;
  gap: var(--sp-5);
  justify-items: center;
}

.smm-cta__stack {
  position: relative;
  width: min(82vw, 360px);
  min-height: 390px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.smm-cta-card {
  position: absolute;
  width: min(74vw, 280px);
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 226, 0.13);
  border-radius: var(--r-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 45%),
    rgba(15, 14, 13, 0.82);
  backdrop-filter: blur(14px);
  color: var(--color-text);
  font-family: var(--font-display);
  line-height: 1.08;
  box-shadow: 0 28px 90px -60px rgba(0, 0, 0, 0.95);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 34px, -120px) rotate(0deg) scale(0.86);
  transition:
    transform 780ms cubic-bezier(.2, .86, .2, 1),
    opacity 520ms ease,
    border-color 520ms ease,
    filter 520ms ease;
  will-change: transform, opacity;
}

.smm-cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.03);
  transition: transform 900ms cubic-bezier(.2, .86, .2, 1);
}

.smm-cta-card__label {
  position: absolute;
  left: var(--sp-4);
  right: var(--sp-4);
  bottom: var(--sp-4);
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(244, 237, 226, 0.18);
  border-radius: var(--r-pill);
  background: rgba(10, 9, 9, 0.72);
  backdrop-filter: blur(6px);
  font-size: 1.02rem;
}

.smm-cta-card.is-active {
  z-index: 3;
  opacity: 1;
  border-color: rgba(242, 169, 59, 0.58);
  filter: saturate(1.08);
  transform: translate3d(0, 0, 80px) rotate(0deg) scale(1);
}

.smm-cta-card.is-active img {
  transform: scale(1.08);
}

.smm-cta-card.is-prev {
  z-index: 1;
  opacity: 0.62;
  transform: translate3d(-62px, 28px, -70px) rotate(-9deg) scale(0.9);
}

.smm-cta-card.is-next {
  z-index: 2;
  opacity: 0.78;
  transform: translate3d(62px, 38px, -40px) rotate(8deg) scale(0.92);
}

.smm-cta__deck-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.smm-cta__deck-dot {
  min-width: 38px;
  height: 30px;
  border: 1px solid rgba(244, 237, 226, 0.16);
  border-radius: var(--r-pill);
  background: rgba(10, 9, 9, 0.5);
  color: var(--color-text-dim);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.smm-cta__deck-dot:hover,
.smm-cta__deck-dot:focus-visible {
  color: var(--color-text);
  border-color: rgba(242, 169, 59, 0.44);
  transform: translateY(-1px);
}

.smm-cta__deck-dot.is-active {
  color: #0a0909;
  border-color: var(--color-accent);
  background: var(--color-accent);
}

@media (min-width: 768px) {
  .smm-cta__deck-controls {
    gap: var(--sp-3);
  }

  .smm-cta__deck-dot {
    min-width: 48px;
    height: 38px;
    border-color: rgba(242, 169, 59, 0.42);
    background: rgba(242, 169, 59, 0.1);
    color: var(--color-text);
    font-size: 0.66rem;
    box-shadow: 0 0 0 1px rgba(10, 9, 9, 0.45), 0 12px 34px rgba(0, 0, 0, 0.28);
    transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
  }

  .smm-cta__deck-dot:hover,
  .smm-cta__deck-dot:focus-visible {
    color: #0a0909;
    border-color: var(--color-accent);
    background: rgba(242, 169, 59, 0.82);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(242, 169, 59, 0.26), 0 16px 42px rgba(242, 169, 59, 0.18);
  }

  .smm-cta__deck-dot.is-active {
    box-shadow: 0 0 0 1px rgba(242, 169, 59, 0.34), 0 18px 46px rgba(242, 169, 59, 0.24);
  }
}

@media (max-width: 859px) {
  .smm-cta__stack {
    min-height: 340px;
  }

  .smm-cta-card.is-prev {
    transform: translate3d(-34px, 30px, -70px) rotate(-8deg) scale(0.9);
  }

  .smm-cta-card.is-next {
    transform: translate3d(34px, 40px, -40px) rotate(7deg) scale(0.92);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .smm-hero__copy,
  .smm-hero__visual,
  .smm-receipt,
  .smm-metodo__card,
  .smm-faq__card {
    animation: smmFadeUp 720ms var(--ease-out) both;
  }

  .smm-hero__visual { animation-delay: 140ms; }
  .smm-receipt:nth-child(2),
  .smm-metodo__card:nth-child(2),
  .smm-faq__card:nth-child(2) { animation-delay: 80ms; }
  .smm-receipt:nth-child(3),
  .smm-metodo__card:nth-child(3),
  .smm-faq__card:nth-child(3) { animation-delay: 160ms; }
}

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

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