:root {
  --wildrosedevs: #DE1B4B;
  --wrd-darkr: #640C23;
  --wrd-red: #FF0040;
  --wrd-black: #0a0a0a;
  --wrd-white: #ffffff;
  --wrd-grey: #e4e4e4;
  --wrd-tile: #d9d9d9;
  --navH: 100px;
}

/* Nav accent (unchanged) */
.navbar {
  background: var(--wrd-black);
}

.navbar .cta {
  background: var(--wildrosedevs);
  color: var(--wrd-white);
}

/* ===== HERO ===== */
.showcase-hero {
  background: var(--wildrosedevs);
  color: var(--wrd-white);
  min-height: 100vh;
  padding: calc(var(--navH) + 40px) 40px 0;
  /* no bottom padding so meta bar hugs */
  display: flex;
  flex-direction: column;
}

.showcase-hero__wrap {
  width: 1280px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 1.1fr) minmax(520px, 1.2fr);
  gap: 48px;
  align-items: start;
}

/* left */
.showcase-hero__back {
  display: inline-block;
  margin-bottom: .75rem;
  font-weight: 600;
  color: var(--wrd-white);
  opacity: .9;
  text-decoration: none;
}

.showcase-hero__back:hover {
  text-decoration: underline;
}

.showcase-hero__title {
  margin: 0 0 .5rem;
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .2px;
  font-size: clamp(40px, 6vw, 72px);
  padding-top: 4vh;
}

.showcase-hero__lede {
  margin: 0 0 1.25rem;
  max-width: 62ch;
  font-family: "Reddit Sans Condensed", system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.1;
}

.showcase-hero__subhead {
  margin: 1rem 0 .35rem;
  font-family: "Reddit Sans Condensed", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.showcase-hero__focus {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  max-width: 68ch;
}

.showcase-hero__focus li {
  white-space: nowrap;
  font-family: "Reddit Sans Condensed", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.showcase-hero__focus li:not(:last-child)::after {
  content: " /";
  margin-left: .2rem;
  opacity: .65;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.1rem;
  border-radius: .5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, background .2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  color: var(--wrd-white);
  border: 2px solid var(--wrd-white);
  background: transparent;
  margin-right: .5rem;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
}

.btn--solid {
  background: var(--wrd-white);
  color: var(--wrd-black);
  border: 2px solid var(--wrd-white);
}

.btn--solid:hover {
  background: #f7f7f7;
}

/* right */
.showcase-hero__right {
  display: flex;
  align-items: start;
}

.mockup {
  margin: 0 0 0 auto;
  aspect-ratio: 1/1;
  /* square */
  height: min(76vh, 820px);
  /* fit desktop viewport */
  max-width: min(44vw, 640px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--wrd-tile);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* === META BAR — tiles are black glass, background stays pink === */
.showcase-meta {
  position: relative;
  margin-top: clamp(22px, 2.4vw, 36px);
  padding-block: 2px;
  background: transparent;
}

/* Full-bleed tile row (content spans the entire viewport width) */
.showcase-meta__wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5vw;
  width: 100% !important;
  justify-self: center;
  margin: 0;
}

/* Tiles: black glass, red hairline borders, label on top */
.meta-tile {
  display: flex;
  flex-direction: column;
  /* label over value */
  justify-content: center;
  gap: 6px;
  min-height: 74px;
  padding: 10px;
  background: rgba(10, 10, 10, .92);
  /* glassy black */
  backdrop-filter: saturate(130%) blur(6px);
  -webkit-backdrop-filter: saturate(130%) blur(6px);
  border: 2px solid #0066CC;
  border-radius: 6px;
  /* thin red outline like comp */
  box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
}

.meta-tile__label {
  font: 600 12px/1.15 "Poppins", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .9);
}

.meta-tile__value {
  font: 600 14px/1.25 "Poppins", system-ui, sans-serif;
  color: var(--wrd-grey);
}

.meta-tile__value small {
  display: block;
  font-size: 12px;
  opacity: .9;
}

/* ===== Responsive ===== */
@media (max-width:1200px) {
  .showcase-hero__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:1100px) {
  .showcase-hero__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase-hero__right {
    order: -1;
  }

  .mockup {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
  }

  .showcase-meta__wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:740px) {
  .showcase-hero {
    padding: calc(var(--navH) + 20px) 24px 0;
  }

  .showcase-meta__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:460px) {
  .showcase-meta__wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== SHOWCASE DESCRIPTION ===== */
.showcase-description {
  background: var(--wrd-black);
  color: var(--wrd-grey);
  padding: clamp(48px, 8vw, 96px) 24px;
}

.showcase-description__wrap {
  width: 1280px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.showcase-description__title {
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--wrd-white);
  margin: 0;
}

.showcase-description__copy {
  max-width: 90%;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}

.showcase-description__copy p+p {
  margin-top: 1rem;
}

/* Visual stack */
.showcase-visual {
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  width: 95%;
}

.showcase-visual img {
  display: block;
  aspect-ratio: 37 / 20;
  width: 100%;
  height: auto;
  object-fit: fill;
}

/* Reveal + parallax */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), opacity .7s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.showcase-visual:hover {
  transform: translateY(-6px) scale(1.01);
  transition: transform .3s ease;
}

/* Responsive */
@media (max-width: 740px) {
  .showcase-description {
    padding: 40px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .reveal-up,
  .showcase-visual {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ===== PAGE-SPECIFIC OVERRIDES: CVAlberta ===== */

/* Hero */
.showcase-hero--cvalberta {
  background: #0095FF;
}

.navspecs--cvalberta-nav {
  color: #0095FF;
}

.navspecs--cvalberta-logo {
  color: #0095FF;
}

.navspecs--cvalberta-cta {
  background: #0095FF !important;
  color: var(--wrd-white);
}

/* Buttons inside hero */
.showcase-hero--cvalberta .btn--ghost {
  border-color: #fff;
  color: #fff;
}

.showcase-hero--cvalberta .btn--solid {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* Meta tile borders */
.showcase-hero--cvalberta~.showcase-meta .meta-tile {
  border-color: #0095FF;
}

/* End CTA */
.showcase-hero--cvalberta~.end-cta {
  background:
    linear-gradient(0deg, rgba(0, 149, 255, .80), rgba(0, 149, 255, .30)),
    var(--end-cta-image) center/cover no-repeat;
}

.showcase-hero--cvalberta~.end-cta .end-cta__btn {
  background: #0095FF;
  color: #fff;
}

.showcase-hero--cvalberta~.end-cta .end-cta__btn:hover {
  background: #007acc;
}

/* Footer background */
.showcase-hero--cvalberta~.wrd-footer {
  background: #0095FF;
}

.showcase-hero--cvalberta~.wrd-footer,
.showcase-hero--cvalberta~.wrd-footer a,
.showcase-hero--cvalberta~.wrd-footer .wrd-footer__copy {
  color: #fff;
}

/* Careers card override for CVAlberta */
.showcase-hero--cvalberta~.wrd-footer .wrd-careers {
  background: #0066CC;
  /* darker blue for contrast */
  color: #fff;
}

.showcase-hero--cvalberta~.wrd-footer .wrd-careers:hover {
  background: #007BFF;
  /* lighter blue on hover */
}