/* Vetrina apprendimento Sirius — BLUE showcase */

.il-app.il-app--showcase {
  max-width: none;
  padding: 0;
  margin: -1rem -1rem -2rem;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .il-app.il-app--showcase {
    margin: -1.25rem -1.75rem -2rem;
  }
}

.il-showcase {
  --sv-navy: #0b1020;
  --sv-deep: #0f172a;
  --sv-blue: #1e3a8a;
  --sv-blue-mid: #2563eb;
  --sv-blue-glow: rgba(37, 99, 235, 0.35);
  --sv-ice: #eff6ff;
  --sv-mist: #f8fafc;
  --sv-ink: #030712;
  --sv-muted: #64748b;
  --sv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sv-font-display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  position: relative;
  color: var(--sv-ink);
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--sv-mist);
}

.il-showcase__progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.il-showcase__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sv-blue-mid), var(--sv-blue));
  box-shadow: 0 0 12px var(--sv-blue-glow);
  transition: width 0.08s linear;
}

/* ── Aurora hero background ── */
.il-showcase__aurora {
  position: absolute;
  inset: 0 0 auto;
  height: min(92vh, 820px);
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(165deg, var(--sv-navy) 0%, var(--sv-deep) 38%, #172554 72%, var(--sv-deep) 100%);
}

.il-showcase__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: ilOrbDrift 18s var(--sv-ease) infinite alternate;
}

.il-showcase__orb--1 {
  width: 420px;
  height: 420px;
  top: -8%;
  left: -6%;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

.il-showcase__orb--2 {
  width: 320px;
  height: 320px;
  top: 20%;
  right: -4%;
  background: radial-gradient(circle, #1e40af 0%, transparent 68%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.il-showcase__orb--3 {
  width: 260px;
  height: 260px;
  bottom: 5%;
  left: 35%;
  background: radial-gradient(circle, #3b82f6 0%, transparent 65%);
  opacity: 0.35;
  animation-delay: -12s;
  animation-duration: 26s;
}

.il-showcase__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.il-showcase__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 2;
}

@keyframes ilOrbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(28px, -22px) scale(1.08); }
}

/* ── Hero ── */
.il-showcase-hero {
  position: relative;
  z-index: 2;
  min-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  color: #fff;
}

.il-showcase-hero__inner {
  max-width: 52rem;
  animation: ilHeroFade 1.1s var(--sv-ease) both;
}

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

.il-showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
}

.il-showcase-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 12px #60a5fa;
  animation: ilPulseDot 2.4s ease-in-out infinite;
}

@keyframes ilPulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.il-showcase-title {
  font-family: var(--sv-font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.il-showcase-title__line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  animation: ilTitleLine 0.85s var(--sv-ease) forwards;
}

.il-showcase-title__line:nth-child(1) { animation-delay: 0.15s; }
.il-showcase-title__line:nth-child(2) { animation-delay: 0.32s; }

@keyframes ilTitleLine {
  to { opacity: 1; transform: translateY(0); }
}

.il-showcase-title em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, #bfdbfe 55%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.il-showcase-lead {
  margin: 0 auto 2.25rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
}

.il-showcase-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.il-showcase-stat {
  min-width: 7rem;
  padding: 1rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.il-showcase-stat--accent .il-showcase-stat__val {
  background: linear-gradient(135deg, #93c5fd, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.il-showcase-stat__val {
  display: block;
  font-family: var(--sv-font-display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.il-showcase-stat__lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.il-showcase-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  animation: ilBounceScroll 2.5s ease-in-out infinite;
}

.il-showcase-scroll i {
  font-size: 1.25rem;
  color: #60a5fa;
}

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

/* ── Dream ticker ── */
.il-showcase-ticker {
  position: relative;
  z-index: 4;
  margin: -1.5rem 0 0;
  padding: 0.65rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, var(--sv-mist) 0%, #fff 50%, var(--sv-mist) 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.il-showcase-ticker__track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: ilTicker 42s linear infinite;
  font-family: var(--sv-font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sv-blue);
  white-space: nowrap;
}

.il-showcase-ticker__track span:nth-child(even) {
  color: #93c5fd;
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

/* ── Trajectory arc ── */
.il-showcase-trajectory {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 0 1.25rem;
}

.il-showcase-trajectory__inner {
  padding: 1rem 0.5rem 0.25rem;
}

.il-showcase-trajectory__svg {
  width: 100%;
  height: auto;
  display: block;
}

.il-showcase-trajectory__path {
  opacity: 0.55;
}

.il-showcase-trajectory__dot {
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.9));
}

.il-showcase-trajectory__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-muted);
}

.il-showcase-trajectory__labels span:nth-child(2) {
  color: var(--sv-blue-mid);
}

.il-showcase-trajectory__labels span:nth-child(3) {
  color: var(--sv-blue);
}

/* ── Pillars ── */
.il-showcase-pillars {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 1.25rem auto 0;
  padding: 0 1.25rem;
}

.il-showcase-pillar {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px -24px rgba(15, 23, 42, 0.35);
  transition: transform 0.35s var(--sv-ease), box-shadow 0.35s var(--sv-ease);
}

.il-showcase-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -20px var(--sv-blue-glow);
}

.il-showcase-pillar__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--sv-ice), #dbeafe);
  color: var(--sv-blue);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.il-showcase-pillar h2 {
  font-family: var(--sv-font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--sv-deep);
}

.il-showcase-pillar p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--sv-muted);
}

/* ── Module rail ── */
.il-showcase-rail {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: 2.5rem 0 0;
  padding: 0.75rem 0;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  -webkit-backdrop-filter: blur(12px);
}

.il-showcase-rail__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.il-showcase-rail__track::-webkit-scrollbar {
  display: none;
}

.il-showcase-rail__chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s var(--sv-ease);
  white-space: nowrap;
}

.il-showcase-rail__chip:hover {
  border-color: #93c5fd;
  color: var(--sv-blue);
}

.il-showcase-rail__chip.is-active {
  background: linear-gradient(135deg, var(--sv-blue), #172554);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
}

.il-showcase-rail__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.08);
}

.il-showcase-rail__chip.is-active .il-showcase-rail__num {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Path / timeline ── */
.il-showcase-path {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 8rem;
}

.il-showcase-path__head {
  text-align: center;
  margin-bottom: 3rem;
}

.il-showcase-path__title {
  font-family: var(--sv-font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--sv-deep);
  line-height: 1.25;
}

.il-showcase-path__tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-blue);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
}

.il-showcase-path__head h2 {
  font-family: var(--sv-font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: var(--sv-deep);
}

.il-showcase-path__lead {
  margin: 0.5rem 0 0;
  color: var(--sv-muted);
  font-size: 0.95rem;
}

.il-showcase-path__head p {
  margin: 0.5rem 0 0;
  color: var(--sv-muted);
  font-size: 0.95rem;
}

.il-showcase-timeline {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.il-showcase-chapter {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.il-showcase-chapter__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.il-showcase-chapter__index {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--sv-font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--sv-blue-mid), var(--sv-blue));
  box-shadow: 0 0 0 4px #eff6ff, 0 12px 28px rgba(30, 58, 138, 0.25);
  z-index: 1;
}

.il-showcase-chapter__line {
  flex: 1;
  width: 2px;
  min-height: 100%;
  margin-top: 0.5rem;
  background: linear-gradient(180deg, #93c5fd, #e2e8f0);
  border-radius: 2px;
}

.il-showcase-chapter__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.il-showcase-chapter__head h3 {
  font-family: var(--sv-font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: var(--sv-deep);
}

.il-showcase-chapter__meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sv-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.il-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.il-showcase-card {
  position: relative;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.4s var(--sv-ease), box-shadow 0.4s var(--sv-ease), border-color 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}

.il-showcase-card--stagger {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 0.55s var(--sv-ease),
    transform 0.55s var(--sv-ease),
    box-shadow 0.4s var(--sv-ease),
    border-color 0.3s;
  transition-delay: calc(var(--sv-stagger, 0) * 70ms);
}

.il-showcase-card--stagger.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.il-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(37, 99, 235, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.il-showcase-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #93c5fd;
  box-shadow: 0 24px 48px -20px var(--sv-blue-glow);
}

.il-showcase-card:hover::before {
  opacity: 1;
}

.il-showcase-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem 1.15rem 1rem;
  text-decoration: none;
  color: inherit;
}

.il-showcase-card__num {
  font-family: var(--sv-font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--sv-blue-mid);
  margin-bottom: 0.45rem;
}

.il-showcase-card__badge {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sv-blue);
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #93c5fd;
}

.il-showcase-card__badge--done {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #065f46;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: #6ee7b7;
}

.il-showcase-card--free {
  border-color: #93c5fd;
  box-shadow: 0 16px 40px -24px var(--sv-blue-glow);
}

.il-showcase-card--done {
  border-color: #6ee7b7;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 55%);
  box-shadow: 0 14px 36px -26px rgba(5, 150, 105, 0.45);
}

.il-showcase-card--done .il-showcase-card__num {
  color: #059669;
}

.il-showcase-card--done .il-showcase-card__cta {
  color: #047857;
}

.il-showcase-card__title {
  font-family: var(--sv-font-display);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.35rem;
  color: var(--sv-deep);
  letter-spacing: -0.02em;
}

.il-showcase-card__contents-label {
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #64748b;
}

.il-showcase-card__objectives {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.il-showcase-card__objectives li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--sv-muted);
}

.il-showcase-card__objectives li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #93c5fd;
}

.il-showcase-card__more {
  font-weight: 700;
  color: var(--sv-blue) !important;
}

.il-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sv-blue);
  margin-top: auto;
}

.il-showcase-card:hover .il-showcase-card__cta i {
  transform: translate(2px, -2px);
}

.il-showcase-card__cta i {
  transition: transform 0.25s var(--sv-ease);
}

/* ── Dock CTA ── */
.il-showcase-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0));
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.5s var(--sv-ease);
}

.il-showcase-dock.is-visible {
  transform: translateY(0);
}

.il-showcase-dock__panel {
  pointer-events: auto;
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  text-align: center;
}

.il-showcase-dock__lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.il-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.il-showcase-btn--primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--sv-blue-mid), var(--sv-blue));
  box-shadow: 0 12px 32px rgba(30, 58, 138, 0.45);
}

.il-showcase-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: ilShimmer 3.5s ease-in-out infinite;
}

@keyframes ilShimmer {
  0%, 100% { transform: translateX(-100%); }
  45%, 55% { transform: translateX(100%); }
}

.il-showcase-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.55);
  color: #fff;
}

.il-showcase-btn--ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.il-showcase-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.il-showcase-dock__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.il-showcase-btn--diploma {
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
  border: 1px solid #fcd34d;
}

.il-showcase-btn--diploma:hover {
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.5);
}

/* ── Scroll reveal ── */
.il-showcase-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--sv-ease), transform 0.7s var(--sv-ease);
}

.il-showcase-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.il-showcase-chapter.is-highlight .il-showcase-chapter__index {
  animation: ilRingPulse 1.2s ease-out;
}

@keyframes ilRingPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

@media (max-width: 900px) {
  .il-showcase-pillars {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }

  .il-showcase-chapter {
    grid-template-columns: 1fr;
  }

  .il-showcase-chapter__marker {
    flex-direction: row;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .il-showcase-chapter__line {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .il-showcase__orb,
  .il-showcase-scroll,
  .il-showcase-eyebrow__dot,
  .il-showcase-btn--primary::after,
  .il-showcase-ticker__track,
  .il-showcase-title__line,
  .il-showcase-hero__inner {
    animation: none;
  }

  .il-showcase-title__line {
    opacity: 1;
    transform: none;
  }

  .il-showcase-reveal,
  .il-showcase-card--stagger {
    opacity: 1;
    transform: none;
  }

  .il-showcase-trajectory__dot animateMotion {
    display: none;
  }
}
