/* ============================================================
   TalentNuvia — "Bold Coaching Energy" direction. Synthesized from
   career-coaching design research (2026-07-22): bold coral/ink palette,
   confident display type, hand-drawn accent marks instead of photography
   or icon badges. Deliberately far from a quiet cream/charcoal editorial
   photo-hero, and from any Inter+Space-Grotesk pairing — Bricolage
   Grotesque (variable, self-hosted) is a font not reused anywhere else
   in this batch. Rounder radii (0.5–1.8rem) than the sharper defaults
   used elsewhere, on purpose.
   ============================================================ */

/* ============================================================
   Brand wordmark + underline — no separate pictorial icon/badge (a
   small hand-drawn arrow read as a generic placeholder mark here); a
   bold wordmark with one confident marker-stroke underneath is the
   more credible pattern for an energetic coaching brand.
   ============================================================ */
.brand--underline .brand__name {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3rem;
}
.brand__underline {
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 0.5rem;
  display: block;
}
.footer__brand .brand__underline path { stroke: #FF6B5B; }

/* ============================================================
   Hero — solid ink background (not a photo, not a split column),
   bold display headline with a hand-drawn squiggle accent, scattered
   sketch-style doodle marks instead of a photo or icon motif. A fourth
   distinct hero skeleton in this batch (vs. split-screen, vs. full-bleed
   photo + bottom scrim, vs. a floating card).
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--topbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.hero__media svg { width: 100%; height: 100%; }
.hero .container.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}
.hero__inner {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  color: #fff;
}
.hero__eyebrow { color: var(--accent-soft); }
.hero__title {
  color: #fff;
  font-family: var(--font-head-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__title .hero__title-mark { color: var(--brand-soft); }
.hero__brand-sub { color: var(--brand-soft); }
.hero__lead { color: rgba(255, 255, 255, 0.82); }
.hero__trust {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}
.hero .btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
}

/* ============================================================
   Topic tiles — bold 2x2 grid with ALTERNATING background colours per
   tile (ink / coral / yellow / cream), not four identical cards — the
   uniform-card-colour pattern is itself a documented "AI slop" tell.
   No icons: big numeral + bold heading instead.
   ============================================================ */
.topic-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.topic-tile {
  display: block;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.18s var(--ease-out);
}
.topic-tile:hover { transform: translateY(-3px); }
.topic-tile__no {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
  opacity: 0.5;
}
.topic-tile h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.topic-tile p { margin: 0; font-size: 0.95rem; }
.topic-tile--ink { background: var(--night); color: #fff; }
.topic-tile--ink p { color: rgba(255, 255, 255, 0.72); }
.topic-tile--coral { background: var(--brand); color: #fff; }
.topic-tile--coral p { color: rgba(255, 255, 255, 0.85); }
.topic-tile--yellow { background: var(--accent); color: var(--ink); }
.topic-tile--yellow p { color: var(--ink-soft); }
.topic-tile--cream { background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); }
.topic-tile--cream p { color: var(--muted); }
@media (max-width: 640px) {
  .topic-tiles { grid-template-columns: 1fr; }
}

/* ============================================================
   Rewrite compare — paired "weak vs. strong" resume-bullet examples.
   Structurally distinct from a table, a mosaic, or a numbered list:
   stacked comparison rows with a muted/strikethrough-style left cell
   and a highlighted right cell.
   ============================================================ */
.rewrite {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rewrite-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.rewrite-cell {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.98rem;
  line-height: 1.55;
}
.rewrite-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}
.rewrite-cell--weak {
  background: var(--surface-2);
  border: 1px dashed var(--line);
  color: var(--muted);
}
.rewrite-cell--weak .rewrite-tag { background: var(--surface-3); color: var(--muted); }
.rewrite-cell--weak p { text-decoration: line-through; text-decoration-color: rgba(122, 115, 134, 0.4); margin: 0; }
.rewrite-cell--strong {
  background: var(--brand-tint);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  color: var(--ink);
}
.rewrite-cell--strong .rewrite-tag { background: var(--brand); color: #fff; }
.rewrite-cell--strong p { margin: 0; font-weight: 500; }
@media (max-width: 720px) {
  .rewrite-row { grid-template-columns: 1fr; }
}
