/* ==========================================================================
   Launch Labs — Section: "Start with SHAPE"
   Static, no JS / animation (composition first). Two balanced columns:
   LEFT — ONE cohesive charcoal panel holding all the content (eyebrow,
   headline, intro, "We'll explore" + bullets, CTA + microcopy), so it reads as
   a single premium information panel rather than several floating elements.
   RIGHT — one strong human photograph of a real strategy call, equal in weight,
   its top/bottom edges aligned with the panel.

   Near-black surface with lots of negative space; the panel is only slightly
   lighter than the page. Launch red (#D92632) for the eyebrow, ticks and CTA.
   Plus Jakarta Sans (display) + Hanken Grotesk (copy). Namespaced .shape-intro
   / .shape-panel.
   ========================================================================== */

.shape-intro {
  --ink:       #FFFFFF;
  --ink-muted: rgba(255, 255, 255, 0.66);
  --ink-faint: rgba(255, 255, 255, 0.45);
  --hairline:  rgba(255, 255, 255, 0.12);
  --contrast:  #D92632;

  background: #010202;
  color: var(--ink);
  /* Generous black negative space around the composition; extra bottom padding
     so the red finale below has room. */
  padding: clamp(5rem, 11vw, 8.5rem) clamp(1.5rem, 4vw, 4rem) calc(clamp(5rem, 11vw, 8.5rem) + 10rem);
}

.shape-intro__inner {
  max-width: 82rem;      /* restrained central width — not full-bleed */
  margin: 0 auto;
  display: grid;
  /* Left column trimmed further (~30px narrower again); the freed width goes to
     the photo. */
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 3.5vw, 3.5rem);   /* deliberate, generous */
  align-items: stretch;              /* tops AND bottoms align, equal heights */
}

/* ---- LEFT: content column (no panel box — only the bullets keep a glass
        container, see .shape-panel below) --------------------------------- */
.shape-intro__col--content {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centre the content against the photo height */
}

.shape-intro__eyebrow {
  margin: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--contrast);
}

.shape-intro__heading {
  margin: 1.5rem 0 0;   /* eyebrow -> heading: ~24px */
  max-width: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.shape-intro__lead {
  margin: 1.5rem 0 0;   /* heading -> intro: ~24px */
  max-width: 42ch;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-muted);
}

/* ---- "We'll explore" + bullets — in their own subtle glass container with
        rounded edges, sitting inside the charcoal panel. ----------------- */
.shape-panel {
  margin-top: 2.5rem;   /* intro -> "We'll explore": ~40px */
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.4rem, 2.6vw, 2.15rem);
  border-radius: 16px;
  background: linear-gradient(158deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  backdrop-filter: blur(6px) saturate(1.1);
}

.shape-panel__title {
  margin: 0 0 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.shape-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;         /* relatively compact */
}

.shape-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.4;
  color: var(--ink-muted);
}

.shape-panel__check {
  flex: 0 0 auto;
  margin-top: 0.06em;
  color: var(--contrast);
}

.shape-panel__check svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

/* ---- CTA — full width beneath both columns, centred ---------------------- */
.shape-intro__cta {
  grid-column: 1 / -1;   /* spans under the panel and the photo */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;           /* CTA -> microcopy: ~11px */
  /* Space above comes from the grid's row gap. */
}

.shape-intro__btn {
  padding: 1.2rem 3rem;
  font-size: 1rem;
  border: none;                 /* no border/outline */
}

/* Quiet depth only — override the global dark-theme red glow (higher
   specificity than a bare .shape-intro__btn), on rest and hover. */
body[data-theme="black"] .shape-intro__btn,
body[data-theme="black"] .shape-intro__btn:hover {
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.6);
}

.shape-intro__cta-note {
  margin: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ---- RIGHT: the photograph, matched to the panel height ------------------ */
.shape-intro__col--media {
  display: flex;   /* lets the figure stretch to the row (panel) height */
}

.shape-intro__figure {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
}

.shape-intro__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;   /* keep the call/faces framed */
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 60rem) {
  .shape-intro__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 5vw, 2.25rem);
    align-items: stretch;
  }
  /* Content first, image below; the image gets a landscape ratio again since it
     no longer needs to match a panel beside it. */
  .shape-intro__col--media { display: block; }
  .shape-intro__figure { aspect-ratio: 3 / 2; }
}
