/* Landing V2 — extends the current Stage design with playable media. */
.concept-stage .youtube-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(24, 189, 98, 0.13), transparent 30%),
    #e6eee8;
}

.concept-stage .youtube-showcase::before {
  content: "";
  position: absolute;
  top: 58px;
  right: -120px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(8, 113, 58, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(8, 113, 58, 0.025), 0 0 0 104px rgba(8, 113, 58, 0.018);
}

.concept-stage .youtube-showcase .container,
.concept-stage .instagram-showcase .container {
  position: relative;
  z-index: 1;
}

.concept-stage .media-heading h2 {
  max-width: 790px;
}

.concept-stage .youtube-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.concept-stage .youtube-card {
  overflow: hidden;
  border: 1px solid #c3d0c6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 62, 32, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.concept-stage .youtube-card:hover,
.concept-stage .youtube-card:focus-within {
  border-color: #8fae98;
  box-shadow: 0 18px 42px rgba(20, 62, 32, 0.12);
  transform: translateY(-3px);
}

.concept-stage .youtube-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #09100c;
}

.concept-stage .youtube-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.concept-stage .youtube-card-copy {
  min-height: 126px;
  padding: 20px;
}

.concept-stage .youtube-card-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e0f5e6;
  color: #08713a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.concept-stage .youtube-card-copy h3 {
  margin: 0;
  color: #172219;
  font: 800 19px/1.3 Manrope, Inter, sans-serif;
  letter-spacing: -0.025em;
}

.concept-stage .media-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.concept-stage .media-section-cta .button {
  min-width: min(100%, 280px);
}

.concept-stage .instagram-showcase {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #d3ddd5;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 255, 100, 0.17), transparent 27%),
    radial-gradient(circle at 90% 84%, rgba(24, 189, 98, 0.09), transparent 30%),
    #f8f7f1;
  color: #121813;
}

.concept-stage .instagram-showcase::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: linear-gradient(90deg, #d9ff64, #18bd62);
}

.concept-stage .instagram-showcase .eyebrow {
  color: #08713a;
}

.concept-stage .instagram-showcase h2 {
  color: #121813;
}

.concept-stage .instagram-showcase .section-heading > p {
  color: #657168;
}

.concept-stage .instagram-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.concept-stage .instagram-card {
  position: relative;
  min-width: 0;
  padding: 10px;
  border: 1px solid #bdcbc0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 62, 32, 0.1);
}

.concept-stage .instagram-card > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(10, 28, 18, 0.84);
  color: #d9ff64;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.concept-stage .instagram-card iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  border-radius: 11px;
  background: #fff;
}

.concept-stage .instagram-showcase .button-light {
  background: #122219;
  color: #fff;
}

.concept-stage .instagram-showcase .button-light:hover {
  background: #08713a;
  color: #fff;
}

@media (min-width: 700px) {
  .concept-stage .youtube-grid,
  .concept-stage .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-stage .youtube-card:last-child {
    grid-column: 1 / -1;
  }

  .concept-stage .youtube-card:last-child .youtube-player {
    aspect-ratio: 16 / 7.4;
  }

  .concept-stage .youtube-card:last-child .youtube-card-copy {
    min-height: 0;
  }

  .concept-stage .instagram-card iframe {
    height: 675px;
  }
}

@media (min-width: 1000px) {
  .concept-stage .youtube-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-stage .youtube-card:last-child {
    grid-column: auto;
  }

  .concept-stage .youtube-card:last-child .youtube-player {
    aspect-ratio: 16 / 9;
  }

  .concept-stage .youtube-card:last-child .youtube-card-copy {
    min-height: 126px;
  }
}

@media (min-width: 1100px) {
  .concept-stage .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-stage .instagram-card iframe {
    height: 660px;
  }
}

@media (max-width: 699px) {
  .concept-stage .youtube-showcase::before {
    top: 130px;
    right: -190px;
  }

  .concept-stage .media-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .concept-stage .youtube-card-copy {
    min-height: 0;
    padding: 18px;
  }

  .concept-stage .youtube-card-copy h3 {
    font-size: 18px;
  }

  .concept-stage .instagram-card {
    padding: 7px;
    border-radius: 14px;
  }

  .concept-stage .instagram-card > span {
    top: 18px;
    left: 18px;
  }

  .concept-stage .instagram-card iframe {
    height: 625px;
    border-radius: 9px;
  }
}

/* Selected hero — centered logo, focused statement, no hero media. */
.selected-hero-page .selected-header {
  position: relative;
  padding: 14px 0;
}

.selected-hero-page .selected-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.selected-hero-page .selected-logo {
  position: relative;
  display: block;
  width: 176px;
  height: 64px;
  overflow: hidden;
}

.selected-hero-page .selected-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.selected-hero-page.concept-stage .hero-selected {
  min-height: 0;
  padding: clamp(72px, 7vw, 104px) 0 78px;
}

.selected-hero-page .hero-selected .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.selected-hero-page .hero-selected .hero-inner > * {
  order: initial;
}

.selected-hero-page.concept-stage .hero-selected h1 {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  color: #0a9b4d;
  font: 800 clamp(48px, 3.55vw, 54px)/1.03 Manrope, sans-serif;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.selected-hero-page.concept-stage .hero-selected h1 span,
.selected-hero-page.concept-stage .hero-selected h1 em {
  display: block;
  color: inherit;
}

.selected-hero-page.concept-stage .hero-selected h1 em {
  margin-top: 8px;
  font-style: normal;
  white-space: nowrap;
}

.selected-hero-page .hero-selected .hero-rule {
  width: min(360px, 44vw);
  height: 1px;
  margin-top: 30px;
  background: linear-gradient(90deg, transparent, rgba(10, 155, 77, 0.5), transparent);
}

.selected-hero-page.concept-stage .hero-selected .hero-promise {
  width: min(100%, 840px);
  margin: 28px 0 0;
  padding: 0;
  border: 0;
  text-align: center;
}

.selected-hero-page.concept-stage .hero-selected .hero-promise strong {
  color: #294837;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-transform: none;
}

.selected-hero-page.concept-stage .hero-selected .hero-promise span {
  margin-top: 10px;
  color: #52665a;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.selected-hero-page.concept-stage .hero-selected .hero-actions {
  display: flex;
  flex-direction: row;
  width: auto;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.selected-hero-page.concept-stage .hero-selected .hero-actions .button {
  width: auto;
  min-width: 270px;
  min-height: 62px;
  padding: 18px 26px;
  font-size: 16px;
}

.selected-hero-page.concept-stage .hero-selected .text-link {
  min-height: 62px;
}

.selected-hero-page.concept-stage .hero-selected .availability {
  width: min(100%, 680px);
  margin-top: 14px;
}

@media (max-width: 900px) {
  .selected-hero-page.concept-stage .hero-selected h1 em {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .selected-hero-page .selected-header {
    padding: 8px 0;
  }

  .selected-hero-page .selected-logo-row {
    min-height: 58px;
  }

  .selected-hero-page .selected-logo {
    width: 132px;
    height: 52px;
  }


  .selected-hero-page.concept-stage .hero-selected {
    padding: 50px 0 58px;
  }

  .selected-hero-page.concept-stage .hero-selected h1 {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.05em;
  }

  .selected-hero-page.concept-stage .hero-selected h1 em {
    margin-top: 13px;
  }

  .selected-hero-page .hero-selected .hero-rule {
    margin-top: 25px;
  }

  .selected-hero-page.concept-stage .hero-selected .hero-promise {
    margin-top: 22px;
  }

  .selected-hero-page.concept-stage .hero-selected .hero-promise strong {
    font-size: 14px;
  }

  .selected-hero-page.concept-stage .hero-selected .hero-promise span {
    font-size: 15px;
  }

  .selected-hero-page.concept-stage .hero-selected .hero-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 24px;
  }

  .selected-hero-page.concept-stage .hero-selected .hero-actions .button,
  .selected-hero-page.concept-stage .hero-selected .text-link {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }

  .selected-hero-page.concept-stage .hero-selected .availability {
    margin-top: 12px;
    font-size: 12px;
  }
}
