#showcase {
  min-height: auto;
  align-items: flex-start;
  padding: clamp(54px, 6vw, 78px) 20px clamp(72px, 9vw, 118px);
}

/* Neutral showcase reset */
.showcase-card::before {
  border-radius: inherit;
  background: linear-gradient(180deg, #f2f2ef, #e7e7e3);
}

.showcase-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.showcase-dashboard-panel,
.showcase-meter,
.showcase-commerce-window,
.showcase-cycle-board,
.showcase-finance-stack,
.showcase-saas-panel,
.showcase-spp-image,
.showcase-card-spp::after {
  display: none;
}

.showcase-neutral-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}

.showcase-neutral-copy {
  position: relative;
  max-width: 58%;
  text-align: left;
  align-self: flex-start;
}

.showcase-neutral-copy::before {
  content: "";
  position: absolute;
  inset: -10px -14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 320ms ease, transform 320ms ease;
  z-index: -1;
  pointer-events: none;
}

.showcase-card:hover .showcase-neutral-copy::before,
.showcase-card:focus-within .showcase-neutral-copy::before,
.showcase-card.is-mobile-active .showcase-neutral-copy::before {
  opacity: 1;
  transform: translateY(0);
}

.showcase-neutral-overlay .showcase-neutral-title {
  margin: 0 0 4px;
  text-align: left;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 400;
}

.showcase-neutral-overlay .showcase-neutral-subtitle {
  margin: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.showcase-neutral-count-wrap {
  position: absolute;
  top: clamp(22px, 2vw, 30px);
  right: clamp(22px, 2vw, 30px);
  pointer-events: auto;
}

.showcase-neutral-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
  cursor: default;
}

.showcase-neutral-count::before {
  content: "⌁";
  font-size: 20px;
  line-height: 1;
}

/* Unified showcase hover behavior */
.showcase-neutral-title,
.showcase-neutral-subtitle,
.showcase-neutral-services,
.showcase-neutral-count-wrap {
  opacity: 0;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.showcase-neutral-title,
.showcase-neutral-subtitle {
  transform: translateY(-16px);
}

.showcase-neutral-count-wrap {
  transform: translateX(18px);
}

.showcase-neutral-services {
  transform: translateX(-18px);
}

.showcase-card:hover .showcase-neutral-title,
.showcase-card:hover .showcase-neutral-subtitle,
.showcase-card:hover .showcase-neutral-services,
.showcase-card:hover .showcase-neutral-count-wrap,
.showcase-card:focus-within .showcase-neutral-title,
.showcase-card:focus-within .showcase-neutral-subtitle,
.showcase-card:focus-within .showcase-neutral-services,
.showcase-card:focus-within .showcase-neutral-count-wrap,
.showcase-card.is-mobile-active .showcase-neutral-title,
.showcase-card.is-mobile-active .showcase-neutral-subtitle,
.showcase-card.is-mobile-active .showcase-neutral-services,
.showcase-card.is-mobile-active .showcase-neutral-count-wrap {
  opacity: 1;
}

.showcase-card:hover .showcase-neutral-title,
.showcase-card:hover .showcase-neutral-subtitle,
.showcase-card:focus-within .showcase-neutral-title,
.showcase-card:focus-within .showcase-neutral-subtitle,
.showcase-card.is-mobile-active .showcase-neutral-title,
.showcase-card.is-mobile-active .showcase-neutral-subtitle {
  transform: translateY(0);
}

.showcase-card:hover .showcase-neutral-count-wrap,
.showcase-card:focus-within .showcase-neutral-count-wrap,
.showcase-card.is-mobile-active .showcase-neutral-count-wrap {
  transform: translateX(0);
}

.showcase-card:hover .showcase-neutral-services,
.showcase-card:focus-within .showcase-neutral-services,
.showcase-card.is-mobile-active .showcase-neutral-services {
  transform: translateX(0);
}

/* Final showcase type tuning */
.showcase-neutral-title {
  color: #ffffff;
  font-size: clamp(20px, 2.1vw, 32px);
}

.showcase-neutral-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.05vw, 17px);
}

.showcase-neutral-plan {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: clamp(220px, 24vw, 340px);
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(33, 33, 33, 0.96);
  color: #ffffff;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
  z-index: 5;
}

.showcase-neutral-count-wrap:hover .showcase-neutral-plan,
.showcase-neutral-count-wrap:focus-within .showcase-neutral-plan {
  opacity: 1;
  transform: translateY(0);
}

.showcase-neutral-services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.showcase-neutral-services span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.showcase-inner {
  max-width: min(1380px, 100%);
}

.showcase-intro {
  padding: clamp(6px, 1.8vw, 18px) 10px clamp(42px, 9vw, 72px);
  text-align: center;
}

.showcase-title {
  margin: 0;
  font-size: clamp(48px, 6.1vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 500;
  color: #0f0f0f;
}

.showcase-title span {
  color: #a0e92a;
}

.showcase-grid {
  width: min(1160px, 100%);
  margin: clamp(26px, 3vw, 46px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 36px);
  align-items: start;
}

.showcase-column {
  display: grid;
  gap: clamp(24px, 2vw, 36px);
}

.showcase-column-right {
  margin-top: clamp(56px, 5.2vw, 92px);
}

.showcase-card {
  aspect-ratio: 1 / 0.84;
  border-radius: clamp(18px, 1.7vw, 28px);
  position: relative;
  overflow: visible;
  background: #f2f2f0;
  isolation: isolate;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.38), transparent 26%),
    linear-gradient(135deg, rgba(160, 233, 42, 0.52), rgba(16, 35, 12, 0.96));
}

.showcase-card-dashboard::before {
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 132, 84, 0.7), transparent 28%),
    linear-gradient(145deg, #261d2b, #523b43 48%, #151519);
}

.showcase-dashboard-panel {
  position: absolute;
  inset: 18% 20% auto;
  height: 52%;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.8);
  color: #ffffff;
  padding: 9%;
}

.showcase-dashboard-panel span {
  display: block;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
}

.showcase-dashboard-panel i {
  display: inline-block;
  width: 9%;
  height: 34%;
  margin: 18% 2% 0;
  border-radius: 999px 999px 0 0;
  background: #ffb24a;
  vertical-align: bottom;
}

.showcase-dashboard-panel i:nth-of-type(2) {
  height: 48%;
}

.showcase-dashboard-panel i:nth-of-type(3) {
  height: 26%;
}

.showcase-meter {
  position: absolute;
  right: 13%;
  bottom: 18%;
  width: 28%;
  height: 28%;
  border-radius: 50%;
  border: 18px solid rgba(255, 116, 91, 0.86);
  border-left-color: rgba(255, 255, 255, 0.16);
}

.showcase-card-spp {
  background: #dceab8;
}

.showcase-card-spp::before {
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(145deg, #dceab8, #c6d79b 54%, #93aa56);
}

.showcase-spp-image {
  position: absolute;
  inset: 7% 7% 5%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

.showcase-spp-image-primary {
  opacity: 1;
  transform: translateX(-3%) scale(0.9);
}

.showcase-spp-image-secondary {
  opacity: 0;
  transform: translateX(-3%) scale(0.92);
}

.showcase-card-spp:hover .showcase-spp-image-primary,
.showcase-card-spp:focus-within .showcase-spp-image-primary {
  opacity: 0;
  transform: translateX(-4%) scale(0.94);
}

.showcase-card-spp:hover .showcase-spp-image-secondary,
.showcase-card-spp:focus-within .showcase-spp-image-secondary {
  opacity: 1;
  transform: translateX(-4%) scale(0.96);
}

.showcase-card-spp::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.showcase-spp-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  align-items: flex-start;
}

.showcase-spp-copy {
  max-width: 54%;
  text-align: left;
}

.showcase-spp-title,
.showcase-spp-subtitle,
.showcase-spp-services,
.showcase-spp-count-wrap {
  opacity: 0;
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.showcase-spp-title,
.showcase-spp-subtitle {
  transform: translateY(-18px);
}

.showcase-spp-count-wrap {
  position: absolute;
  top: clamp(22px, 2vw, 30px);
  right: clamp(22px, 2vw, 30px);
  transform: translateX(20px);
  pointer-events: auto;
}

.showcase-spp-services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transform: translateX(-22px);
}

.showcase-spp-title {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 400;
}

.showcase-spp-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.showcase-spp-services span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1;
  letter-spacing: -0.03em;
  backdrop-filter: blur(8px);
}

.showcase-spp-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
  cursor: default;
  backdrop-filter: blur(8px);
}

.showcase-spp-count::before {
  content: "⌁";
  font-size: 20px;
  line-height: 1;
}

.showcase-spp-plan {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: clamp(220px, 24vw, 340px);
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(33, 33, 33, 0.96);
  color: #ffffff;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
  z-index: 5;
}

.showcase-spp-count-wrap:hover .showcase-spp-plan,
.showcase-spp-count-wrap:focus-within .showcase-spp-plan {
  opacity: 1;
  transform: translateY(0);
}

.showcase-card-spp:hover .showcase-spp-title,
.showcase-card-spp:hover .showcase-spp-subtitle,
.showcase-card-spp:hover .showcase-spp-services,
.showcase-card-spp:hover .showcase-spp-count-wrap,
.showcase-card-spp:focus-within .showcase-spp-title,
.showcase-card-spp:focus-within .showcase-spp-subtitle,
.showcase-card-spp:focus-within .showcase-spp-services,
.showcase-card-spp:focus-within .showcase-spp-count-wrap {
  opacity: 1;
}

.showcase-card-spp:hover .showcase-spp-title,
.showcase-card-spp:hover .showcase-spp-subtitle,
.showcase-card-spp:focus-within .showcase-spp-title,
.showcase-card-spp:focus-within .showcase-spp-subtitle {
  transform: translateY(0);
}

.showcase-card-spp:hover .showcase-spp-count-wrap,
.showcase-card-spp:focus-within .showcase-spp-count-wrap {
  transform: translateX(0);
}

.showcase-card-spp:hover .showcase-spp-services,
.showcase-card-spp:focus-within .showcase-spp-services {
  transform: translateX(0);
}

.showcase-card-commerce::before {
  background:
    radial-gradient(circle at 74% 20%, rgba(160, 233, 42, 0.7), transparent 28%),
    linear-gradient(145deg, #f3f3ee, #d8e0d2 48%, #111111 49%, #30352b);
}

.showcase-commerce-window {
  position: absolute;
  inset: 18% 14%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.showcase-commerce-window span,
.showcase-commerce-window i {
  display: block;
  height: 8%;
  margin: 8% 12%;
  border-radius: 999px;
  background: #a0e92a;
}

.showcase-commerce-window i {
  width: 58%;
  background: rgba(17, 17, 17, 0.12);
}

.showcase-card-cycle::before {
  background:
    radial-gradient(circle at 62% 72%, rgba(160, 233, 42, 0.86), transparent 24%),
    linear-gradient(135deg, #102000, #b9f12f 46%, #18210c 47%, #0f1709);
}

.showcase-cycle-board {
  position: absolute;
  inset: 22% 14%;
  transform: rotate(-12deg);
}

.showcase-cycle-board span {
  display: grid;
  place-items: center;
  height: 38%;
  border-radius: 22px;
  background: #c8f532;
  color: #111111;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.showcase-cycle-board i {
  display: inline-block;
  width: 29%;
  height: 22%;
  margin: 6% 2%;
  border-radius: 18px;
  background: rgba(8, 14, 4, 0.72);
}

.showcase-card-fintech::before {
  background:
    radial-gradient(circle at 78% 30%, rgba(149, 76, 255, 0.7), transparent 28%),
    linear-gradient(145deg, #0e0b23, #1b1745 52%, #a0e92a 53%, #111111);
}

.showcase-finance-stack {
  position: absolute;
  inset: 15%;
  transform: rotate(-16deg);
  display: grid;
  gap: 8%;
}

.showcase-finance-stack span {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(160, 233, 42, 0.22);
}

.showcase-card-saas::before {
  background:
    radial-gradient(circle at 30% 32%, rgba(160, 233, 42, 0.76), transparent 28%),
    linear-gradient(145deg, #111111, #343434);
}

.showcase-saas-panel {
  position: absolute;
  inset: 18%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10%;
}

.showcase-saas-panel span,
.showcase-saas-panel i {
  display: block;
  height: 13%;
  margin-bottom: 9%;
  border-radius: 999px;
  background: #a0e92a;
}

.showcase-saas-panel i {
  width: 72%;
  background: rgba(255, 255, 255, 0.2);
}

.showcase-trust-line {
  margin-top: clamp(34px, 3.4vw, 56px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1vw, 18px);
  color: #111111;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.showcase-trust-copy {
  font-weight: 400;
}

.showcase-yc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-yc-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #f26522;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.showcase-yc-word {
  color: #f26522;
  font-family: var(--brand-font);
  font-size: 15px;
  letter-spacing: 0.16em;
}

.showcase-techstars {
  display: inline-flex;
  align-items: baseline;
  color: #101010;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.showcase-techstars span {
  width: 9px;
  height: 3px;
  margin-left: 2px;
  display: inline-block;
  background: #a0e92a;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .showcase-intro {
    padding: 22px 10px 48px;
  }

  .showcase-title {
    font-size: clamp(42px, 12vw, 68px);
    line-height: 0.98;
  }

  .showcase-trust-line {
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap;
    white-space: normal;
    font-size: 12px;
  }

  .showcase-yc {
    gap: 6px;
  }

  .showcase-yc-mark {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .showcase-yc-word {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .showcase-techstars {
    font-size: 16px;
  }

  .showcase-techstars span {
    width: 7px;
    height: 2px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
  }

  .showcase-column-right {
    margin-top: 0;
  }

  .showcase-card {
    aspect-ratio: 1 / 0.88;
  }

  .showcase-spp-copy {
    max-width: 70%;
  }

  .showcase-spp-title {
    font-size: clamp(28px, 6vw, 42px);
  }

  .showcase-spp-subtitle {
    font-size: clamp(16px, 3.5vw, 22px);
  }

  .showcase-spp-services {
    gap: 8px;
  }

  .showcase-spp-services span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }

  .showcase-spp-count {
    min-width: 46px;
    height: 34px;
    font-size: 18px;
  }

  .showcase-spp-plan {
    width: min(250px, 72vw);
    font-size: 13px;
  }

  .showcase-neutral-copy {
    max-width: 74%;
  }

  .showcase-neutral-title {
    font-size: clamp(24px, 5.5vw, 36px);
  }

  .showcase-neutral-subtitle {
    font-size: clamp(14px, 3vw, 18px);
  }

  .showcase-neutral-services {
    gap: 8px;
  }

  .showcase-neutral-services span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }

  .showcase-neutral-count {
    min-width: 46px;
    height: 34px;
    font-size: 18px;
  }

  .showcase-neutral-plan {
    width: min(250px, 72vw);
    font-size: 13px;
  }
}
