/* ============================================================
   SINGBLUE — Approach pages (broken / building / ai / capability)
   ============================================================ */

/* Body background for approach pages */
body {
  background: var(--white);
}

/* ─── HERO ─── */
.hero {
  padding: var(--space-4xl) var(--gutter) var(--space-2xl);
  border-bottom: 1px solid var(--light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: end;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-left {
  max-width: 780px;
}

.hero-kicker {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
  animation: up 0.6s 0.1s both;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
  animation: up 0.6s 0.2s both;
}

.hero-body {
  font-size: var(--text-lead);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
  animation: up 0.6s 0.3s both;
}

.hero-cta-wrap {
  animation: up 0.6s 0.35s both;
  flex-shrink: 0;
}

/* ─── CONTENT SECTIONS ─── */
.section {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: var(--space-2xl) var(--gutter);
  border-bottom: 1px solid var(--light);
}

.approach-body {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
  max-width: 760px;
}

/* ─── WHAT YOU GET GRID ─── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light);
  border: 1px solid var(--light);
  margin-top: var(--space-lg);
}

.what-card {
  background: var(--white);
  padding: 36px 32px;
}

.what-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.what-card-body {
  font-size: var(--text-small);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--body-clr);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: var(--space-3xl) var(--gutter-mobile) var(--space-xl);
  }

  .section {
    padding: var(--space-xl) var(--gutter-mobile);
  }

  .what-grid {
    grid-template-columns: 1fr;
  }
}
