/* ==========================================================================
   IN7 GAME — pages/home.css
   Hero tunnel-to-spotlight, podium, arena zones, screenshots, OG banner.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero — stadium tunnel entrance
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #1d1218 0%, #0a0a0c 58%);
}

/* Tunnel mouth: concentric arches receding into the dark */
.hero__tunnel {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1500px, 160%);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.hero__arch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215, 169, 63, 0.16);
  border-radius: 50% 50% 6% 6% / 62% 62% 4% 4%;
  animation: arch-glow 7s ease-in-out infinite;
}

.hero__arch:nth-child(1) {
  width: 96%;
  height: 128%;
  animation-delay: 0s;
}
.hero__arch:nth-child(2) {
  width: 76%;
  height: 106%;
  border-color: rgba(215, 169, 63, 0.22);
  animation-delay: 0.7s;
}
.hero__arch:nth-child(3) {
  width: 56%;
  height: 84%;
  border-color: rgba(200, 16, 46, 0.26);
  animation-delay: 1.4s;
}
.hero__arch:nth-child(4) {
  width: 36%;
  height: 60%;
  border-color: rgba(215, 169, 63, 0.3);
  animation-delay: 2.1s;
}

@keyframes arch-glow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Three named areas so the app mockup can sit between the headline and the
   bonus/CTA block on mobile, without duplicating markup for each breakpoint.
   Desktop keeps the original look: intro+offer stacked in the left column,
   visual centered in the right column spanning both their rows. */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "intro visual"
    "offer visual";
  /* row-gap 0: intro/offer keep flowing together via their own element
     margins, exactly as when they were one block — only the column gap
     (between text and mockup) is a real grid gap. */
  gap: 0 clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__intro {
  grid-area: intro;
}

.hero__offer {
  grid-area: offer;
}

.hero__visual {
  grid-area: visual;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "visual"
      "offer";
    /* Single column now, so this is a real row gap — gives the mockup
       breathing room above and below it between the headline and the
       bonus/CTA block. */
    row-gap: clamp(2rem, 6vw, 3rem);
    text-align: center;
    justify-items: center;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-gold);
  background: rgba(215, 169, 63, 0.08);
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
  animation: hero-eyebrow-in 700ms var(--ease-out) both;
}

@keyframes hero-eyebrow-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.hero__eyebrow svg {
  width: 14px;
  height: 14px;
}

/* Punch-in headline */
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero__word {
  display: inline-block;
  margin-right: 0.22em;
}

/* Pre-punch state applies only when JS is driving the stagger. */
.js-ready .hero__word {
  opacity: 0;
  transform: scale(0.78) translateY(10px);
  filter: blur(6px);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .hero__word,
  .hero__word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero__word.is-punched {
  animation: word-punch 620ms var(--ease-punch) forwards;
}

@keyframes word-punch {
  0% {
    opacity: 0;
    transform: scale(0.78) translateY(10px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.07) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hero__word--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(215, 169, 63, 0.35);
}

.hero__word--crimson {
  color: #ff4a63;
  text-shadow: 0 0 30px rgba(200, 16, 46, 0.55);
}

/* Converging spotlight beams behind the headline */
.hero__spots {
  position: absolute;
  inset: -20% -30% auto -30%;
  height: 340px;
  pointer-events: none;
  z-index: -1;
}

.hero__spot {
  position: absolute;
  top: 0;
  width: 120px;
  height: 420px;
  background: linear-gradient(180deg, rgba(215, 169, 63, 0.22), transparent 70%);
  filter: blur(14px);
  transform-origin: top center;
  opacity: 0;
  animation: spot-converge 1400ms var(--ease-out) 200ms forwards;
}

.hero__spot--1 {
  left: 4%;
  --rot: 34deg;
}
.hero__spot--2 {
  left: 26%;
  --rot: 16deg;
}
.hero__spot--3 {
  right: 26%;
  --rot: -16deg;
}
.hero__spot--4 {
  right: 4%;
  --rot: -34deg;
}

@keyframes spot-converge {
  0% {
    opacity: 0;
    transform: rotate(calc(var(--rot) * 2.4)) scaleY(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(var(--rot)) scaleY(1);
  }
}

.hero__lead {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.85;
  max-width: 58ch;
  margin-bottom: var(--space-5);
  animation: fade-rise 800ms var(--ease-out) 700ms both;
}

@media (max-width: 980px) {
  .hero__lead {
    margin-inline: auto;
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* Bonus flash strip */
.hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.35rem 0.75rem 0.85rem;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-crimson);
  background: linear-gradient(100deg, rgba(200, 16, 46, 0.2), rgba(215, 169, 63, 0.08));
  animation: fade-rise 800ms var(--ease-out) 820ms both;
}

.hero__bonus-amt {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__bonus-txt {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-align: left;
}

.hero__bonus-txt b {
  display: block;
  color: var(--color-text-primary);
  letter-spacing: 0.1em;
}

.hero__actions {
  animation: fade-rise 800ms var(--ease-out) 940ms both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: var(--space-5);
  padding: 0;
  list-style: none;
  animation: fade-rise 800ms var(--ease-out) 1060ms both;
}

@media (max-width: 980px) {
  .hero__trust {
    justify-content: center;
  }
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.hero__trust svg {
  width: 15px;
  height: 15px;
  color: var(--color-gold);
  flex: 0 0 auto;
}

/* Hero visual column */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  animation: fade-rise 900ms var(--ease-out) 400ms both;
  min-width: 0;
}

.hero__trophy-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.35rem 0.85rem 0.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-gold);
  background: rgba(16, 16, 20, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  max-width: 100%;
}

.hero__trophy-row .trophy {
  width: 82px;
  height: 82px;
}

.hero__trophy-row .trophy__face {
  font-size: 1.35rem;
}

.hero__trophy-copy {
  min-width: 0;
}

.hero__trophy-copy b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}

.hero__trophy-copy span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-dim);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   2. Marquee keyword rail
   -------------------------------------------------------------------------- */
.krail {
  border-bottom: 1px solid var(--color-border);
  background: #0d0d10;
  overflow: hidden;
  padding-block: 0.7rem;
}

.krail__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: krail-scroll 44s linear infinite;
}

.krail:hover .krail__track {
  animation-play-state: paused;
}

@keyframes krail-scroll {
  to {
    transform: translateX(-50%);
  }
}

.krail__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  white-space: nowrap;
}

.krail__item::after {
  content: "◆";
  color: var(--color-gold);
  font-size: 0.6rem;
}

/* --------------------------------------------------------------------------
   3. OG banner showcase
   -------------------------------------------------------------------------- */
.ogb {
  position: relative;
  overflow: hidden;
}

.ogb__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

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

.ogb__frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: linear-gradient(135deg, rgba(215, 169, 63, 0.55), rgba(200, 16, 46, 0.4) 45%, rgba(215, 169, 63, 0.3));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.ogb__frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(255, 255, 255, 0.45) 78%, transparent 88%);
  animation: ogb-sweep 7s linear infinite;
}

@keyframes ogb-sweep {
  to {
    transform: rotate(360deg);
  }
}

.ogb__media {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background: #000;
}

.ogb__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 900ms var(--ease-out);
}

.ogb__frame:hover .ogb__img {
  transform: scale(1.03);
}

.ogb__tag {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(8, 8, 10, 0.82);
  border: 1px solid var(--color-border-gold);
  backdrop-filter: blur(8px);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-bright);
}

.ogb__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
}

.ogb__list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.85rem;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.ogb__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--grad-gold);
  transform: rotate(45deg);
}

.ogb__list b {
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   4. Winner's podium
   -------------------------------------------------------------------------- */
.podium-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0e, #150f13 55%, #0b0b0e);
}

.podium-sec__inner {
  position: relative;
  z-index: 1;
}

.podium {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: end;
  gap: clamp(0.6rem, 1.6vw, 1.35rem);
  max-width: 900px;
  /* No bottom margin — .podium__floor butts directly against the tiers. */
  margin: 0 auto;
}

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

.podium__tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.1rem, 2.2vw, 1.6rem) 1rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid var(--color-border);
  border-bottom: 0;
  background: linear-gradient(180deg, var(--color-surface-2), #14141a);
  transition: opacity 620ms var(--ease-out), transform 720ms var(--ease-punch);
}

/* Pre-rise state applies only when JS is driving the reveal. */
.js-ready .podium__tier {
  opacity: 0;
  transform: translateY(48px);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready .podium__tier,
  .podium__tier {
    opacity: 1;
    transform: none;
  }
}

.podium.is-risen .podium__tier {
  opacity: 1;
  transform: none;
}

.podium__tier--2 {
  min-height: 200px;
  transition-delay: 0ms;
}

.podium__tier--3 {
  min-height: 168px;
  transition-delay: 140ms;
}

.podium__tier--1 {
  min-height: 268px;
  border-color: var(--color-border-gold);
  background: linear-gradient(180deg, rgba(215, 169, 63, 0.2), rgba(200, 16, 46, 0.12) 52%, #14141a);
  box-shadow: var(--shadow-spotlight);
  transition-delay: 300ms;
}

@media (max-width: 720px) {
  .podium {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }
  .podium__tier {
    min-height: 0 !important;
    border-radius: var(--radius-md);
    border-bottom: 1px solid var(--color-border);
  }
  .podium__tier--1 {
    order: -1;
    border-bottom-color: var(--color-border-gold);
  }
}

.podium__place {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #17130a;
  background: linear-gradient(160deg, #e6e6ea, #9a9aa4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.podium__tier--3 .podium__place {
  background: linear-gradient(160deg, #e6a475, #a2663a);
}

.podium__tier--1 .podium__place {
  width: 56px;
  height: 56px;
  font-size: 1.3rem;
  background: var(--grad-gold);
  box-shadow: var(--shadow-spotlight);
}

.podium__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 0.4rem;
}

.podium__tier--1 .podium__label {
  color: var(--color-gold-bright);
}

.podium__prize {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  margin-bottom: 0.4rem;
}

.podium__tier--1 .podium__prize {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(215, 169, 63, 0.4));
}

.podium__desc {
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: var(--color-text-dim);
  margin: 0;
  max-width: 26ch;
}

.podium__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.28rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--grad-crimson);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.podium__floor {
  max-width: 900px;
  height: 14px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: linear-gradient(180deg, #2a2a32, #0c0c0f);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(215, 169, 63, 0.24);
}

@media (max-width: 720px) {
  .podium__floor {
    display: none;
  }
}

/* Bonus step cards under the podium */
/* Room for the absolutely-positioned number badge above the card title. */
.bstep {
  position: relative;
  padding-top: 5.25rem;
}

.bstep__num {
  position: absolute;
  top: clamp(1.4rem, 2.4vw, 2rem);
  left: clamp(1.4rem, 2.4vw, 2rem);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--grad-crimson);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.4);
}

/* --------------------------------------------------------------------------
   5. Arena zones (accordion)
   -------------------------------------------------------------------------- */
.zones {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.zone {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  transition: border-color var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out);
}

.zone.is-open {
  border-color: var(--color-border-gold);
  box-shadow: 0 0 0 1px var(--color-border-gold), var(--shadow-lift);
}

.zone__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  width: 100%;
  padding: clamp(1rem, 2.2vw, 1.5rem) clamp(1rem, 2.4vw, 1.75rem);
  background: transparent;
  border: 0;
  text-align: left;
  color: inherit;
  transition: background var(--dur-mid) var(--ease-out);
}

.zone__head:hover {
  background: rgba(215, 169, 63, 0.05);
}

.zone__thumb {
  position: relative;
  flex: 0 0 auto;
  width: clamp(58px, 8vw, 84px);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  background: #101014;
}

.zone__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.zone__head:hover .zone__thumb img {
  transform: scale(1.12);
}

.zone__meta {
  flex: 1 1 auto;
  min-width: 0;
}

.zone__name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin: 0 0 0.3rem;
}

.zone.is-open .zone__name {
  color: var(--color-gold-bright);
}

.zone__count {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  background: var(--color-gold-soft);
}

.zone__teaser {
  font-size: var(--fs-sm);
  color: var(--color-text-dim);
  margin: 0;
  line-height: 1.65;
}

.zone__toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  transition: transform var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out);
}

.zone__toggle svg {
  width: 16px;
  height: 16px;
}

.zone.is-open .zone__toggle {
  transform: rotate(180deg);
  background: var(--grad-gold);
  color: #17130a;
}

.zone__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 520ms var(--ease-out), opacity 380ms var(--ease-out);
}

.zone.is-open .zone__panel {
  opacity: 1;
}

.zone__body {
  padding: 0 clamp(1rem, 2.4vw, 1.75rem) clamp(1.25rem, 2.6vw, 1.9rem);
  border-top: 1px solid var(--color-border);
  padding-top: clamp(1.1rem, 2.2vw, 1.6rem);
}

.zone__desc {
  font-size: var(--fs-sm);
  line-height: 1.85;
  max-width: 78ch;
  margin-bottom: var(--space-5);
}

.zone__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-5);
  padding: 0;
  list-style: none;
}

.zone__facts li {
  margin: 0;
  padding: 0.35rem 0.8rem;
  font-size: var(--fs-xs);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text-muted);
}

.zone__facts b {
  color: var(--color-gold-bright);
}

.zone__more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-5);
}

/* --------------------------------------------------------------------------
   6. Screenshot slider
   -------------------------------------------------------------------------- */
.shots {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0c, #121016 50%, #0a0a0c);
}

.shots__stage {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1rem, 2vw, 1.75rem);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.shots__track {
  display: flex;
  gap: clamp(1rem, 2.4vw, 1.75rem);
  transition: transform 700ms var(--ease-out);
  will-change: transform;
}

.shots__slide {
  flex: 0 0 auto;
  width: clamp(190px, 22vw, 250px);
}

.shots__device {
  position: relative;
  border-radius: 30px;
  padding: 8px;
  background: linear-gradient(150deg, #34343c 0%, #14141a 30%, #0b0b0e 65%, #2a2a31 100%);
  box-shadow: 0 0 0 1px rgba(215, 169, 63, 0.2), 0 24px 54px rgba(0, 0, 0, 0.7);
  transition: transform 620ms var(--ease-out), box-shadow 620ms var(--ease-out);
}

.shots__slide.is-active .shots__device {
  transform: translateY(-14px) scale(1.045);
  box-shadow: 0 0 0 1px var(--color-border-gold), var(--shadow-spotlight),
    0 34px 70px rgba(0, 0, 0, 0.8);
}

.shots__screen {
  position: relative;
  border-radius: 23px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 19.5;
}

.shots__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shots__pill {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 14px;
  border-radius: 999px;
  background: #07070a;
  z-index: 2;
}

.shots__cap {
  margin-top: 0.9rem;
  text-align: center;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: var(--color-text-dim);
  transition: color var(--dur-mid) var(--ease-out);
}

.shots__slide.is-active .shots__cap {
  color: var(--color-gold-bright);
}

.shots__cap b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 0.15rem;
}

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.shots__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-gold-bright);
  transition: all var(--dur-fast) var(--ease-out);
}

.shots__btn:hover {
  background: var(--grad-gold);
  color: #17130a;
  transform: scale(1.08);
}

.shots__btn svg {
  width: 18px;
  height: 18px;
}

.shots__dots {
  display: flex;
  gap: 0.5rem;
}

.shots__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.22);
  transition: all var(--dur-fast) var(--ease-out);
}

.shots__dot.is-on {
  width: 28px;
  border-radius: 999px;
  background: var(--grad-gold);
}

/* --------------------------------------------------------------------------
   7. Split content block (why / how it works)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: var(--shadow-card);
}

.split__media img {
  width: 100%;
  height: auto;
}

/* Numbered timeline */
.tline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 clamp(2.25rem, 4vw, 3rem);
}

.tline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-crimson) 60%, transparent);
}

.tline li {
  position: relative;
  margin-bottom: var(--space-5);
}

.tline li:last-child {
  margin-bottom: 0;
}

.tline li::before {
  content: counter(list-item);
  position: absolute;
  left: calc(-1 * clamp(2.25rem, 4vw, 3rem));
  top: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #14141a;
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-bright);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.tline h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-primary);
}

.tline p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin: 0;
}

/* Provider logos strip (text based) */
.prov {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.prov li {
  margin: 0;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: all var(--dur-fast) var(--ease-out);
}

.prov li:hover {
  border-color: var(--color-border-gold);
  color: var(--color-gold-bright);
  transform: translateY(-2px);
}
