/* ─────────────────────────────────────────────────────────────────────────
   relateto.ai — shared typography tokens
   Source of truth for the small set of selectors that recurred verbatim
   across every page's inline <style> block (F11).

   Color modifiers (.btn--forest, .btn--outline, etc.), page-specific
   layouts, and intentional per-page divergences (e.g. index.html's
   cursor:none, agents.html .btn-primary, example-session.html .btn,
   404.html a.btn) stay inline on the consuming page.

   CSS-custom-properties referenced here (--forest, --ink, --ease, etc.)
   are declared in each page's :root block — shared.css is layered on top.
   ───────────────────────────────────────────────────────────────────────── */

/* ─── SECTION LABEL ──────────────────────────────────────────────────────── */
.sec-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--forest);
}

/* ─── BUTTONS (base only — modifiers stay per-page) ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease);
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 0;
}
.btn:hover::after { transform: scaleX(1); }
.btn span { position: relative; z-index: 1; }

/* ─── NAV LOGO (top-level pages) ─────────────────────────────────────────── */
.nav__logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo em {
  font-style: normal;
  color: var(--forest);
}

/* ─── LP / JOURNAL LOGO (same values, distinct class — keeps HTML stable) ─ */
.lp-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-logo em {
  font-style: normal;
  color: var(--forest);
}

/* ─── FOOTER LOGO ────────────────────────────────────────────────────────── */
.footer__logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}
.footer__logo em {
  font-style: normal;
  color: var(--forest-pale);
}

/* ─── JOURNAL HERO EYEBROW (same pattern as .sec-label, journal-only) ───── */
.journal-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.journal-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--forest);
}

/* ─── LP / SITUATIONS HERO EYEBROW (block form, no leading rule) ─────────── */
.lp-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--forest);
  margin-bottom: 28px;
}

/* ─── APPROACH (DARK section — situations + LP families) ─────────────────── */
.approach {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: 'CLARITY';
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.approach .sec-label { color: var(--forest-pale); }
.approach .sec-label::before { background: var(--forest-pale); }
.approach__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.approach__headline em {
  font-style: normal;
  color: var(--forest-pale);
  display: block;
}
.approach__body { padding-top: 8px; }
.approach__body p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 48px;
}
.approach__steps { display: flex; flex-direction: column; gap: 0; }
.approach__step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.approach__step:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.approach__step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--forest-pale);
  letter-spacing: 0.1em;
  padding-top: 3px;
}
.approach__step-content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.approach__step-content span {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
@media (max-width: 1024px) { .approach__inner { grid-template-columns: 1fr; gap: 56px; } }

/* ─── SESSION CARD (pricing block — situations + LP families) ────────────── */
.sess-card {
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.sess-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 56, 41, 0.1);
  border-color: var(--forest-pale);
}
.sess-card__top-rule {
  height: 2px;
  background: var(--forest);
  margin-bottom: 40px;
  transition: height 0.3s;
}
.sess-card:hover .sess-card__top-rule { height: 3px; }
.sess-card__tag {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--forest);
  margin-bottom: 16px;
}
.sess-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}
.sess-card__duration {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.sess-card__price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.sess-card__price-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 300;
  margin-bottom: 32px;
}
.sess-card__rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.sess-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 40px;
}
.sess-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.55;
}
.sess-card__features li::before {
  content: '\2014';
  color: var(--forest);
  font-weight: 400;
  flex-shrink: 0;
}
.sess-card .btn { width: 100%; justify-content: center; }

/* ─── TRUST DRAWER (situations + LP — replaced.html keeps body padding-top:0) */
.trust-drawer {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--linen);
}
.trust-drawer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trust-drawer h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.trust-drawer__creds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.trust-drawer__body p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 52ch;
}
@media (max-width: 1024px) { .trust-drawer__inner { grid-template-columns: 1fr; gap: 48px; } }

/* ─── COMPASSION + DISCLAIMER (situations + journal families) ────────────── */
.compassion {
  padding: 56px 0 0;
  background: var(--linen);
}
.compassion p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.7;
}
.compassion a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.disclaimer {
  max-width: 640px;
  margin: 32px auto 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.6;
  padding: 0 24px 56px;
}

/* ─── FINAL CTA BAND (situations + LP families) ──────────────────────────── */
.cta-band {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, var(--forest-mid) 0%, transparent 65%);
  opacity: 0.5;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-band h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fff;
}
.cta-band h2 em {
  font-style: normal;
  color: var(--forest-pale);
}
.cta-band__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.cta-band .btn { justify-content: center; }
@media (max-width: 1024px) { .cta-band__inner { grid-template-columns: 1fr; gap: 40px; } .cta-band__btns { flex-direction: row; } }
@media (max-width: 580px)  { .cta-band__btns { flex-direction: column; } }

/* ─── LP FOOTER (situations + journal + LP families) ─────────────────────── */
.lp-footer {
  background: var(--ink);
  padding: 40px 0;
}
.lp-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.775rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}
.lp-footer__links { display: flex; gap: 20px; }
.lp-footer__links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.lp-footer__links a:hover { color: rgba(255,255,255,0.7); }
