@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Sora:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* ── Warm editorial palette ── */
  --ink: #0f0f14;
  --ink-light: #1a1a24;
  --ink-mid: #2a2a38;
  --slate: #6b6b7e;
  --slate-light: #9196a8;
  --cloud: #e8e4db;
  --cloud-dark: #d8d4c8;
  --white: #ffffff;
  --surface: #f4f1eb;

  /* ── Teal accent ── */
  --accent: #1a6b66;
  --accent-dark: #145550;
  --accent-light: #4ab8b2;
  --accent-glow: rgba(26, 107, 102, .12);
  --accent-subtle: rgba(26, 107, 102, .06);
  --accent-vivid: #2dd4bf;

  /* ── Warm secondaries ── */
  --gold: #b8820a;
  --gold-light: #f0c84a;
  --emerald: #1a6b3a;
  --emerald-glow: rgba(26, 107, 58, .10);

  /* ── Typography ── */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* ── Layout ── */
  --section-pad: clamp(4.5rem, 9vw, 7rem);
  --container: 1400px;
  --radius: 12px;
  --radius-lg: 16px;

  /* ── Motion ── */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ TYPOGRAPHY ═══ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(2rem, 4vw, 3.5rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h4 { font-size: 1.35rem; }

p {
  color: var(--slate);
  font-size: 1.15rem;
  line-height: 1.78;
  font-weight: 400;
}

.label {
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav--scrolled {
  background: rgba(244, 241, 235, .92);
  backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 1px 0 var(--cloud-dark);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(2rem, 4vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--white); display: flex; align-items: center; gap: .5rem;
  transition: color .3s; white-space: nowrap;
}
.nav--scrolled .nav__logo { color: var(--ink); }
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-body);
}
.nav__logo-mark svg { width: 18px; height: 18px; }
.nav__links { display: flex; gap: .1rem; list-style: none; }
.nav__links a {
  color: rgba(255,255,255,.65); font-size: .92rem; font-weight: 600;
  font-family: var(--font-body);
  padding: .4rem .7rem; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__links a.active { color: var(--white); font-weight: 600; }

/* Scrolled: warm bg with dark text */
.nav--scrolled .nav__links a { color: var(--slate); }
.nav--scrolled .nav__links a:hover { color: var(--ink); background: rgba(0,0,0,.05); }
.nav--scrolled .nav__links a.active { color: var(--accent); font-weight: 600; }

.nav__mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
.nav--scrolled .nav__mobile-toggle span { background: var(--ink); }

@media (max-width: 900px) {
  .nav__mobile-toggle { display: flex; }
  .nav__links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(244, 241, 235, .98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 1rem 2rem 2rem; gap: 0;
    transform: translateY(-120%); transition: transform .4s var(--ease-out);
    border-bottom: 1px solid var(--cloud-dark);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .8rem 1rem; font-size: 1.05rem; border-radius: 10px; color: var(--ink) !important; }
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  background: var(--ink);
  padding: calc(68px + var(--section-pad)) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(26, 107, 102, .12), transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(184, 130, 10, .06), transparent 50%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 65%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--surface); margin-bottom: 1.5rem; max-width: 860px; }
.hero p { color: var(--slate-light); font-size: 1.25rem; max-width: 720px; margin-bottom: 2rem; line-height: 1.8; }
.hero__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.hero__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  color: rgba(255,255,255,.6);
  font-size: .88rem; font-weight: 500;
  font-family: var(--font-body);
}
.hero__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-light); }

/* ═══ SECTIONS ═══ */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--ink); color: var(--surface); }
.section--dark h2 { color: var(--surface); }
.section--dark h3 { color: var(--surface); }
.section--dark p { color: var(--slate-light); }
.section--dark .section__label { color: var(--accent-light); }
.section__header { margin-bottom: 3rem; }
.section__label { color: var(--accent); margin-bottom: .75rem; display: block; font-size: .85rem; }
.section__header h2 { margin-bottom: .75rem; font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.section__header p { max-width: 780px; font-size: 1.2rem; }

/* ═══ CARDS ═══ */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 15, 20, .06);
  border-color: var(--cloud-dark);
}
.card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
  background: var(--accent-subtle); color: var(--accent);
}
.card__icon--emerald { background: var(--emerald-glow); color: var(--emerald); }
.card h3 { margin-bottom: .75rem; font-size: 1.5rem; }
.card h4 { margin-bottom: .5rem; font-size: 1.2rem; }
.card p { font-size: 1.05rem; margin-bottom: 1rem; }
.card__meta { display: flex; gap: 1.5rem; margin: 1rem 0; font-size: .9rem; color: var(--slate); font-family: var(--font-body); }
.card__meta span { display: flex; align-items: center; gap: .35rem; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .72rem 1.5rem; border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  font-family: var(--font-body);
  transition: all .25s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 107, 102, .2);
}
.btn--ghost { color: var(--accent); border: 1px solid rgba(26, 107, 102, .3); }
.btn--ghost:hover { background: var(--accent-subtle); border-color: var(--accent); }
.btn--white { color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn--white:hover { background: rgba(255,255,255,.1); }
.btn__arrow { transition: transform .25s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ═══ FILTERS ═══ */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: .5rem 1.2rem; border-radius: 100px;
  font-size: .88rem; font-weight: 500;
  color: var(--slate); background: var(--white);
  border: 1px solid var(--cloud-dark);
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--accent); background: var(--accent-subtle);
  border-color: rgba(26, 107, 102, .25);
}

/* ═══ DETAIL PAGES ═══ */
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-sidebar {
  background: var(--white); border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-lg); padding: 2rem;
  position: sticky; top: 96px;
}
.detail-sidebar h4 { margin-bottom: 1rem; }
.detail-section { margin-bottom: 2.5rem; }
.detail-section h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; margin-bottom: .75rem; color: var(--ink); }
.detail-section p { font-size: 1rem; }

/* ═══ AGENT CARDS ═══ */
.agent-card {
  border: 1px solid var(--cloud-dark); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.agent-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15, 15, 20, .06); }
.agent-card__header { background: var(--ink); padding: 2rem; position: relative; overflow: hidden; }
.agent-card__header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(26, 107, 102, .1), transparent 60%); }
.agent-card__header h3 { color: var(--surface); position: relative; z-index: 1; }
.agent-card__header p { color: var(--slate-light); position: relative; z-index: 1; font-size: .95rem; }
.agent-card__body { padding: 2rem; }
.agent-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.agent-card__tag {
  font-size: .76rem; padding: .3rem .7rem;
  background: var(--accent-subtle); color: var(--accent-dark);
  border-radius: 100px; font-weight: 600;
  font-family: var(--font-mono); letter-spacing: .02em;
}

/* ═══ CRED GRID ═══ */
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.cred-item {
  text-align: center; padding: 2rem 1rem;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--cloud-dark);
  transition: border-color .2s;
}
.cred-item:hover { border-color: var(--accent); }
.cred-item__num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--accent); margin-bottom: .5rem;
}
.cred-item p { font-size: .9rem; }

/* ═══ FOOTER ═══ */
.footer { background: var(--ink); padding: 4rem 0 2rem; color: rgba(244, 241, 235, .45); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer h4 { color: var(--surface); font-family: var(--font-mono); font-weight: 500; font-size: .76rem; margin-bottom: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.footer a { display: block; color: rgba(244, 241, 235, .45); font-size: .95rem; padding: .3rem 0; transition: color .2s; }
.footer a:hover { color: var(--accent-light); }
.footer__bottom { border-top: 1px solid rgba(244, 241, 235, .08); padding-top: 2rem; font-size: .85rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

/* ═══ FORMS ═══ */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--cloud-dark); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
textarea { resize: vertical; min-height: 120px; }

/* ═══ MODAL ═══ */
/* ── Modal overlay ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(15, 15, 20, .6); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.active { display: flex; overflow-y: auto; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 3rem; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.modal h3 { margin-bottom: .5rem; }
.modal p { margin-bottom: 1.5rem; font-size: 1rem; }
.modal input { width: 100%; padding: .8rem 1rem; border: 1px solid var(--cloud-dark); border-radius: 10px; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); }
.modal select { width: 100%; padding: .8rem 1rem; border: 1px solid var(--cloud-dark); border-radius: 10px; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-body); background: var(--white); color: var(--ink); appearance: auto; }
.modal .btn { width: 100%; justify-content: center; }

/* ── Gate modal ── */
.gate-modal { max-width: 520px; transition: max-width .3s ease; max-height: 90vh; overflow-y: auto; }
.gate-fine-print { font-size: 0.8rem !important; color: var(--slate-light) !important; margin-bottom: 0 !important; }

/* ── Path cards ── */
.gate-paths { display: flex; flex-direction: column; gap: .75rem; text-align: left; }
.gate-path {
  border: 2px solid var(--cloud-dark);
  border-radius: 14px;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.gate-path:hover { border-color: var(--accent); background: var(--accent-subtle); }
.gate-path--active { border-color: var(--accent); background: var(--accent-subtle); box-shadow: 0 0 0 3px var(--accent-glow); }

.gate-path__header { display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; }
.gate-path__icon { font-size: 1.3rem; }
.gate-path__label { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--ink); }
.gate-path__desc { font-size: .88rem; color: var(--slate); line-height: 1.6; margin-bottom: 0; }
.gate-path--active .gate-path__desc { margin-bottom: .75rem; }

.gate-path__form { animation: fadeUp .25s ease both; }
.gate-path__form .btn { margin-top: .5rem; }

.gate-paths__divider {
  display: flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 600; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: .08em;
}
.gate-paths__divider::before,
.gate-paths__divider::after { content: ''; flex: 1; height: 1px; background: var(--cloud-dark); }

/* ── LinkedIn engagement steps ── */
.gate-linkedin-steps { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.gate-linkedin-step {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cloud);
}
.gate-linkedin-step:last-child { border-bottom: none; }
.gate-linkedin-step__num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: .78rem; font-weight: 700; font-family: var(--font-mono);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.gate-linkedin-step strong { font-size: .92rem; color: var(--ink); display: block; margin-bottom: .2rem; }
.gate-linkedin-step p { font-size: .82rem; color: var(--slate); line-height: 1.55; margin: 0; }

.gate-keywords { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .4rem; }
.gate-keyword {
  display: inline-flex; padding: .2rem .6rem;
  border-radius: 6px; font-size: .78rem; font-weight: 600;
  background: var(--accent-glow); color: var(--accent-dark);
  border: 1px solid rgba(26,107,102,.15);
}

.gate-comeback-note {
  font-size: .82rem !important; color: var(--slate-light) !important;
  margin-top: .75rem !important; margin-bottom: 0 !important;
}
/* ── Book quote callout ── */
.gate-book-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
}
.gate-book-quote__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  top: .4rem;
  left: .85rem;
  opacity: .2;
}
.gate-book-quote p {
  font-size: .88rem !important;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: .4rem !important;
  padding-left: 1.2rem;
}
.gate-book-quote cite {
  font-size: .78rem;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 600;
  padding-left: 1.2rem;
}

/* ── Comment prompts ── */
.gate-prompts {
  list-style: none;
  margin-top: .5rem;
}
.gate-prompts li {
  font-size: .84rem;
  color: var(--slate);
  line-height: 1.55;
  padding: .35rem 0 .35rem 1.25rem;
  position: relative;
}
.gate-prompts li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ── Pending state ── */
.gate-pending__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  display: block;
}

/* ── Success state ── */
.gate-success__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .gate-modal { padding: 2rem 1.5rem; }
  .gate-linkedin-step { gap: .5rem; }
}

/* ═══ PAGE HERO ═══ */
.page-hero {
  background: var(--ink);
  padding: calc(68px + 3rem) 0 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 107, 102, .1), transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(184, 130, 10, .05), transparent 45%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--surface); font-size: clamp(2.4rem, 4.5vw, 3.5rem); margin-bottom: .75rem; }
.page-hero p { color: var(--slate-light); max-width: 760px; font-size: 1.2rem; }

/* ═══ BADGES ═══ */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .75rem; border-radius: 6px;
  font-size: .76rem; font-weight: 600;
  font-family: var(--font-mono); letter-spacing: .03em;
}
.badge--blue { background: var(--accent-subtle); color: var(--accent-dark); }
.badge--green { background: var(--emerald-glow); color: var(--emerald); }
.badge--gray { background: rgba(0,0,0,.04); color: var(--slate); }

/* ═══ DISCLAIMER ═══ */
.disclaimer { background: var(--white); border-left: 3px solid var(--accent); padding: 1rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0; }
.disclaimer p { font-size: .95rem; color: var(--slate); }

/* ═══ UTILITIES ═══ */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.animate.visible { opacity: 1; transform: translateY(0); }

/* ═══ FEED ITEMS ═══ */
.feed-item { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--cloud); }
.feed-item:last-child { border-bottom: none; }
.feed-item__source { width: fit-content; white-space: nowrap; }
.feed-item__date { color: var(--slate-light); font-size: .88rem; white-space: nowrap; font-family: var(--font-mono); font-size: .78rem; }
.feed-item h4 { margin-bottom: .25rem; font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
.feed-item p { font-size: .95rem; margin: 0; }
@media (max-width: 600px) { .feed-item { grid-template-columns: 1fr; gap: .5rem; } }

/* ═══ CHAPTER LIST ═══ */
.chapter-list { list-style: none; }
.chapter-list li { padding: 1rem 0; border-bottom: 1px solid var(--cloud); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.chapter-list li:last-child { border-bottom: none; }
.chapter-num { font-family: var(--font-mono); font-weight: 600; color: var(--accent); margin-right: 1rem; font-size: .82rem; letter-spacing: .04em; }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cloud); }
::-webkit-scrollbar-thumb { background: var(--slate-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══ SELECTION ═══ */
::selection { background: rgba(26, 107, 102, .15); color: var(--ink); }


/* ═══════════════════════════════════════════════
   TOOLKIT PAGE — Lifecycle View
   ═══════════════════════════════════════════════ */

/* ── Toolkit Hero ── */
.tk-hero {
  position: relative;
  background: var(--ink);
  padding: calc(68px + clamp(3rem, 6vw, 5rem)) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.tk-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(13,148,136,.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(37,99,235,.1) 0%, transparent 50%);
  pointer-events: none;
}
.tk-hero__grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,148,136,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.tk-hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.tk-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 16px;
  background: rgba(13,148,136,.12);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 5px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #0D9488;
  margin-bottom: 1.5rem;
}
.tk-hero__dot {
  width: 6px; height: 6px;
  background: #0D9488; border-radius: 50%;
  box-shadow: 0 0 10px #0D9488;
  animation: tkGlow 2s infinite;
}
@keyframes tkGlow { 0%,100%{opacity:.4} 50%{opacity:1} }
.tk-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  color: var(--surface); letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.tk-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #0D9488, #38d8ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tk-hero__desc {
  font-size: 1.15rem; line-height: 1.8;
  color: rgba(244,241,235,.45);
}
.tk-hero__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; overflow: hidden;
}
.tk-hero__stat {
  padding: 1.75rem 1.5rem; position: relative;
}
.tk-hero__stat:nth-child(1) { border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.tk-hero__stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.06); }
.tk-hero__stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.06); }
.tk-hero__stat-num {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1;
  letter-spacing: -.04em;
}
.tk-hero__stat-num span { color: #0D9488; }
.tk-hero__stat-label {
  font-size: .8rem; color: rgba(255,255,255,.35);
  margin-top: .5rem; line-height: 1.4;
}

@media (max-width: 900px) {
  .tk-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Collapsible Discipline Section ── */
.tk-discipline {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tk-discipline__toggle {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  list-style: none;
  transition: background .15s;
}
.tk-discipline__toggle:hover { background: var(--surface); }
.tk-discipline__toggle::-webkit-details-marker { display: none; }
.tk-discipline__chevron {
  transition: transform .2s;
  flex-shrink: 0; color: var(--slate-light);
}
.tk-discipline[open] .tk-discipline__chevron { transform: rotate(90deg); }
.tk-discipline__body {
  padding: 0 1.5rem 1.5rem;
  animation: fadeUp .3s ease both;
}
.tk-discipline__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1.5rem;
}
.tk-discipline__card {
  background: var(--surface); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--cloud);
}
.tk-discipline__card-header {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .5rem;
}
.tk-discipline__card h4 {
  font-size: 1.15rem; margin-bottom: .5rem;
}
.tk-discipline__card p {
  font-size: .95rem; line-height: 1.7;
}
.tk-roles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
}
.tk-role-card {
  background: var(--surface); border: 1px solid var(--cloud);
  border-radius: var(--radius); padding: 1.25rem;
  transition: border-color .2s;
}
.tk-role-card:hover { border-color: var(--accent); }
.tk-role-card__icon { font-size: 1.5rem; display: block; margin-bottom: .5rem; }
.tk-role-card__name { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
.tk-role-card__desc { font-size: .85rem; color: var(--slate); line-height: 1.55; }
.tk-discipline__value {
  background: var(--ink); color: rgba(255,255,255,.75);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  font-size: .95rem; line-height: 1.7;
}
.tk-discipline__value strong { color: var(--accent-vivid); }

@media (max-width: 900px) {
  .tk-discipline__grid { grid-template-columns: 1fr; }
  .tk-roles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tk-roles-grid { grid-template-columns: 1fr; }
}

/* ── Lifecycle Flow ── */
.tk-flow { margin-bottom: 1rem; }
.tk-flow__rail {
  display: flex; align-items: stretch; gap: 0;
  padding: 1.5rem 0 1rem;
  overflow-x: auto;
}
.tk-flow__node {
  flex: 1; min-width: 150px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 .5rem;
  text-decoration: none; color: inherit;
  cursor: pointer; transition: transform .15s;
}
.tk-flow__node:hover { transform: translateY(-3px); }
.tk-flow__node-badge {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900; color: #fff;
  background: var(--stage-color);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  position: relative;
}
.tk-flow__node-badge::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 20px;
  border: 2px solid var(--stage-color);
  opacity: .2;
}
.tk-flow__node-name {
  margin-top: .75rem;
  font-size: .88rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em;
  line-height: 1.3;
}
.tk-flow__node-q {
  font-style: italic; font-size: .78rem;
  color: var(--slate-light); margin-top: .25rem;
  line-height: 1.45; max-width: 150px;
}
.tk-flow__node-count {
  margin-top: .5rem;
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600;
  padding: 3px 10px; border-radius: 5px;
  background: var(--stage-color-light);
  color: var(--stage-color);
}
.tk-flow__arrow {
  width: 40px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  padding-bottom: 60px;
}
.tk-flow__arrow svg { width: 24px; height: 24px; }
.tk-flow__feedback {
  display: flex; align-items: center; justify-content: center;
  margin-top: .5rem; padding: 0 5%;
}
.tk-flow__feedback-line {
  height: 2px; flex: 1;
  background: linear-gradient(90deg, #059669, var(--slate-light), #D97706);
  border-radius: 1px; opacity: .25;
}
.tk-flow__feedback-label {
  font-family: var(--font-mono);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--slate-light);
  padding: 0 1rem; white-space: nowrap;
}

@media (max-width: 900px) {
  .tk-flow__rail { flex-wrap: wrap; justify-content: center; gap: .5rem; }
  .tk-flow__arrow { width: 24px; padding-bottom: 0; }
  .tk-flow__feedback { display: none; }
}

/* ── Role Filter Bar ── */
.tk-filter {
  display: flex; align-items: center; gap: 0;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 2rem;
}
.tk-filter__label {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-light);
  padding: .75rem 1rem;
  white-space: nowrap; flex-shrink: 0;
}
.tk-filter__btn {
  padding: .6rem 1rem; border-radius: 8px;
  font-size: .95rem; font-weight: 500;
  color: var(--slate); white-space: nowrap;
  transition: all .15s;
  display: flex; align-items: center; gap: .4rem;
}
.tk-filter__btn:hover { background: var(--surface); }
.tk-filter__btn.active {
  font-weight: 700; color: #fff;
  background: var(--role-color);
}
.tk-filter__dot {
  width: 8px; height: 8px; border-radius: 3px;
  flex-shrink: 0;
}
.tk-filter__btn.active .tk-filter__dot { background: rgba(255,255,255,.4) !important; }
.tk-filter__count {
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600;
  background: var(--surface);
  padding: 2px 6px; border-radius: 3px;
  color: var(--slate);
}
.tk-filter__btn.active .tk-filter__count {
  background: rgba(255,255,255,.2);
  color: #fff;
}

@media (max-width: 900px) {
  .tk-filter { flex-wrap: wrap; }
}

/* ── Stage Sections ── */
.tk-stage { margin-bottom: 2.5rem; }
.tk-stage__header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--cloud-dark);
}
.tk-stage__badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.tk-stage__info { flex: 1; }
.tk-stage__num {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--stage-color);
  margin-bottom: .1rem;
}
.tk-stage__name {
  font-size: 1.45rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em;
}
.tk-stage__q {
  font-style: italic; font-size: 1.02rem;
  color: var(--slate); margin-top: .15rem;
}
.tk-stage__count {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 600;
  padding: .35rem .75rem; border-radius: 6px;
  white-space: nowrap;
}

/* ── Connector Lines ── */
.tk-connector {
  display: flex; align-items: center; justify-content: center;
  padding: .25rem 0; margin-bottom: .25rem;
}
.tk-connector__line {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, var(--cloud-dark), var(--slate-light), var(--cloud-dark));
  border-radius: 1px;
}

/* ── Tool Cards Grid ── */
.tk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  .tk-grid { grid-template-columns: 1fr; }
}

/* ── Tool Card ── */
.tk-card {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-top: 3px solid var(--stage-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .2s var(--ease);
  display: flex; flex-direction: column;
}
.tk-card:hover {
  border-color: var(--ink);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

/* Coming soon variant */
.tk-card--soon {
  opacity: .5;
  border-style: dashed;
  border-top-style: dashed;
}
.tk-card--soon:hover {
  opacity: .7; transform: none;
  box-shadow: none; border-color: var(--slate-light);
}

/* Lite version indicator */
.tk-card--lite { }

/* Dimmed by role filter */
.tk-card--dimmed {
  opacity: .15;
  transform: scale(.98);
  pointer-events: none;
}

.tk-card__badges {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: .75rem;
}
.tk-card__name {
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
  margin-bottom: .5rem;
}
.tk-card__desc {
  font-size: .98rem; color: var(--slate);
  line-height: 1.65; margin-bottom: .75rem;
  flex-grow: 1;
}
.tk-card__roles {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin-bottom: .75rem;
}
.tk-card__role-tag {
  font-size: .7rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: 4px;
  background: color-mix(in srgb, var(--role-color) 8%, transparent);
  color: var(--role-color);
  transition: outline .15s;
}
.tk-card__role-tag--active {
  outline: 2px solid var(--role-color);
  outline-offset: -1px;
}
.tk-card__meta {
  font-family: var(--font-mono);
  font-size: .78rem; color: var(--slate-light);
  display: flex; justify-content: space-between;
  align-items: center;
}
.tk-card__action {
  font-size: .9rem;
}

/* ── Where This Fits (Ops Landscape) ── */
.tk-ops__title {
  font-size: 2rem; margin-bottom: .5rem;
}
.tk-ops__subtitle {
  font-size: 1.1rem; color: var(--slate);
  max-width: 700px; margin-bottom: 2rem;
  line-height: 1.7;
}
.tk-ops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .85rem;
}
.tk-ops__card {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.tk-ops__card--highlight {
  border: 2px solid #0D9488;
  background: linear-gradient(135deg, rgba(13,148,136,.02), rgba(13,148,136,.06));
}
.tk-ops__card-name {
  font-size: 1.08rem; font-weight: 800;
  color: var(--ink); margin-bottom: .25rem;
}
.tk-ops__card-focus {
  font-size: .95rem; color: var(--slate);
  line-height: 1.55; margin-bottom: .65rem;
}
.tk-ops__card-tag {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 4px;
  display: inline-block;
}

/* ── Card Grid override for deliverables ── */
.card-grid--3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* color-mix fallback for older browsers */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .tk-card__role-tag { background: rgba(0,0,0,.04); }
}

/* ═══ ROLE INFO BANNER (on deliverables page) ═══ */
.tk-role-banner {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--role-color);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.tk-role-banner__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  flex-shrink: 0;
}
.tk-role-banner__content { flex: 1; min-width: 0; }
.tk-role-banner__name {
  font-size: 1.05rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.01em;
}
.tk-role-banner__tagline {
  font-size: .88rem; color: var(--slate);
  line-height: 1.5; margin-top: .1rem;
}
.tk-role-banner__tools {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 700;
  padding: .35rem .75rem; border-radius: 6px;
  background: var(--surface);
  color: var(--role-color);
  white-space: nowrap; flex-shrink: 0;
}
.tk-role-banner__link {
  font-size: .88rem; font-weight: 700;
  color: var(--role-color);
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: .3rem;
  transition: opacity .15s;
}
.tk-role-banner__link:hover { opacity: .75; }
@media (max-width: 768px) {
  .tk-role-banner { flex-wrap: wrap; gap: .75rem; }
  .tk-role-banner__link { width: 100%; }
}

/* ═══ ROLE DETAIL PAGES ═══ */
.role-hero {
  position: relative;
  background: var(--ink); overflow: hidden;
  padding: calc(68px + clamp(3rem, 6vw, 5rem)) 0 clamp(2.5rem, 5vw, 4rem);
}
.role-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 75% 30%, color-mix(in srgb, var(--role-color) 15%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 25% 80%, rgba(37,99,235,.08) 0%, transparent 50%);
  pointer-events: none;
}
.role-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--role-color) 4%, transparent) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.role-hero .container { position: relative; z-index: 2; }
.role-hero__icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  background: var(--role-color);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  margin-bottom: 1.25rem;
}
.role-hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; color: var(--surface);
  letter-spacing: -.03em; margin-bottom: .75rem;
}
.role-hero__tagline {
  font-size: 1.2rem; color: rgba(244,241,235,.5);
  line-height: 1.7; max-width: 640px;
}
.role-hero__stages {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.5rem;
}
.role-hero__stage-tag {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  padding: .3rem .75rem; border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
}
.role-hero__stage-tag--primary {
  background: var(--role-color);
  border-color: var(--role-color);
  color: #fff;
}

.role-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.role-section + .role-section {
  border-top: 1px solid var(--cloud-dark);
}
.role-section__title {
  font-size: 1.65rem; font-weight: 800;
  color: var(--ink); margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.role-section__subtitle {
  font-size: 1.1rem; color: var(--slate);
  line-height: 1.7; max-width: 700px;
  margin-bottom: 2rem;
}
.role-summary {
  font-size: 1.15rem; line-height: 1.85;
  color: var(--slate); max-width: 760px;
}

/* Role page cards */
.role-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.role-detail-card {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 3px solid var(--role-color);
}
.role-detail-card__num {
  font-family: var(--font-mono);
  font-size: .7rem; font-weight: 700;
  color: var(--role-color);
  letter-spacing: .1em;
  margin-bottom: .35rem;
}
.role-detail-card__text {
  font-size: 1rem; color: var(--slate);
  line-height: 1.65;
}

/* Value proposition callout */
.role-value {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: rgba(244,241,235,.75);
  font-size: 1.05rem;
  line-height: 1.85;
  position: relative; overflow: hidden;
}
.role-value::before {
  content: ''; position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, color-mix(in srgb, var(--role-color) 15%, transparent), transparent 70%);
  pointer-events: none;
}
.role-value strong { color: var(--accent-vivid); }
.role-value__label {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--role-color);
  margin-bottom: .75rem; display: block;
}

/* Tools belonging to this role */
.role-tools__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.role-tool-card {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-top: 3px solid var(--stage-color, var(--cloud-dark));
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex; flex-direction: column;
  transition: all .2s var(--ease);
}
.role-tool-card:hover {
  border-color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.role-tool-card--soon { opacity: .55; border-style: dashed; border-top-style: dashed; }
.role-tool-card--soon:hover { opacity: .7; transform: none; box-shadow: none; }
.role-tool-card__stage {
  font-family: var(--font-mono);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--stage-color, var(--slate-light));
  margin-bottom: .35rem;
}
.role-tool-card__name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: .35rem;
}
.role-tool-card__desc {
  font-size: .95rem; color: var(--slate);
  line-height: 1.6; flex-grow: 1;
}

/* ── At a Glance stats strip ── */
.role-glance {
  background: var(--white);
  border-bottom: 1px solid var(--cloud-dark);
  padding: 1.25rem 0;
}
.role-glance__grid {
  display: flex; justify-content: center;
  gap: 0;
}
.role-glance__stat {
  text-align: center;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--cloud-dark);
}
.role-glance__stat:last-child { border-right: none; }
.role-glance__stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800; line-height: 1;
  letter-spacing: -.03em;
}
.role-glance__stat-label {
  font-size: .72rem; font-weight: 600;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .35rem;
}
@media (max-width: 600px) {
  .role-glance__grid { flex-wrap: wrap; gap: 1rem; }
  .role-glance__stat { border-right: none; flex: 1 1 40%; }
}

/* ── This Is You If ── */
.role-identity { max-width: 760px; }
.role-identity__item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--cloud);
  font-size: 1.02rem; color: var(--slate);
  line-height: 1.7;
}
.role-identity__item:last-child { border-bottom: none; }
.role-identity__check {
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0; margin-top: .1rem;
}

/* ── Lifecycle mini-visual ── */
.role-lifecycle {
  display: flex; align-items: center;
  gap: 0; overflow-x: auto;
  padding: 1rem 0;
}
.role-lifecycle__stage {
  flex: 1; min-width: 100px;
  text-align: center; padding: .75rem .5rem;
  border-radius: var(--radius);
  opacity: .3;
  transition: all .2s;
}
.role-lifecycle__stage--active {
  opacity: 1;
  background: var(--surface);
  border: 1px solid var(--cloud-dark);
}
.role-lifecycle__stage--primary {
  opacity: 1;
  background: color-mix(in srgb, var(--role-color) 8%, white);
  border: 2px solid var(--role-color);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--role-color) 15%, transparent);
}
.role-lifecycle__num {
  font-size: 1.5rem; font-weight: 900;
  color: var(--stage-color);
  line-height: 1;
}
.role-lifecycle__stage--primary .role-lifecycle__num { color: var(--role-color); }
.role-lifecycle__name {
  font-size: .72rem; font-weight: 700;
  color: var(--slate); margin-top: .25rem;
  letter-spacing: -.01em;
}
.role-lifecycle__stage:not(.role-lifecycle__stage--active) .role-lifecycle__name { color: var(--slate-light); }
.role-lifecycle__arrow {
  font-size: 1rem; color: var(--cloud-dark);
  padding: 0 .25rem; flex-shrink: 0;
  padding-bottom: .5rem;
}
@media (max-width: 600px) {
  .role-lifecycle { flex-wrap: wrap; gap: .5rem; }
  .role-lifecycle__arrow { display: none; }
  .role-lifecycle__stage { min-width: 80px; }
}

/* ── Responsibilities two-column ── */
.role-resp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .role-resp-grid { grid-template-columns: 1fr; } }
.role-resp-col {}
.role-resp-col__title {
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.role-resp-item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cloud);
  font-size: .95rem; color: var(--slate);
  line-height: 1.6;
}
.role-resp-item:last-child { border-bottom: none; }
.role-resp-item__bullet {
  width: 8px; height: 8px;
  border-radius: 2px; flex-shrink: 0;
  margin-top: .45rem;
}

/* ── Best Practices ── */
.role-practices { max-width: 760px; }
.role-practice {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cloud);
}
.role-practice:last-child { border-bottom: none; }
.role-practice__num {
  font-family: var(--font-mono);
  font-size: .85rem; font-weight: 800;
  min-width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--role-color) 8%, white);
  border-radius: 6px; flex-shrink: 0;
}
.role-practice__text {
  font-size: .98rem; color: var(--slate);
  line-height: 1.7;
}

/* ── Toolkit stage grouping ── */
.role-toolkit-stage { margin-bottom: 1.5rem; }
.role-toolkit-stage__header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .75rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--cloud);
}
.role-toolkit-stage__badge {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.role-toolkit-stage__name {
  font-size: .95rem; font-weight: 700; color: var(--ink);
}
.role-toolkit-stage__count {
  font-family: var(--font-mono);
  font-size: .68rem; font-weight: 600;
  color: var(--stage-color);
  margin-left: auto;
}

/* ── Coming Soon teaser ── */
.role-coming-soon {
  background: var(--surface);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.role-coming-soon__title {
  font-size: 1.25rem; margin-bottom: .5rem;
}
.role-coming-soon__text {
  font-size: .98rem; color: var(--slate);
  margin-bottom: 1.5rem;
}
.role-coming-soon__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .role-coming-soon__grid { grid-template-columns: 1fr; } }
.role-coming-soon__item {
  display: flex; flex-direction: column; gap: .2rem;
  padding: 1rem;
  background: var(--white);
  border: 1px dashed var(--cloud-dark);
  border-radius: var(--radius);
}
.role-coming-soon__icon { font-size: 1.25rem; }
.role-coming-soon__item strong {
  font-size: .92rem; color: var(--ink);
}
.role-coming-soon__item span:last-child {
  font-size: .85rem; color: var(--slate-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   LAUNCHPAD PAGE
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.lp-hero {
  position: relative;
  background: var(--ink); overflow: hidden;
  padding: calc(68px + clamp(3rem, 6vw, 5rem)) 0 clamp(3rem, 5vw, 4.5rem);
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 20%, rgba(13,148,136,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(37,99,235,.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 20% 70%, rgba(234,88,12,.06) 0%, transparent 50%);
  pointer-events: none;
}
.lp-hero__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,148,136,.04) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.lp-hero__inner { position: relative; z-index: 2; text-align: center; }
.lp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 18px;
  background: rgba(13,148,136,.12);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 5px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #0D9488; margin-bottom: 1.5rem;
}
.lp-hero__dot {
  width: 6px; height: 6px; background: #0D9488;
  border-radius: 50%; box-shadow: 0 0 10px #0D9488;
  animation: tkGlow 2s infinite;
}
.lp-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800; color: var(--surface);
  letter-spacing: -.03em; margin-bottom: 1rem;
}
.lp-hero__desc {
  font-size: 1.2rem; line-height: 1.8;
  color: rgba(244,241,235,.45);
  max-width: 680px; margin: 0 auto;
}

/* ── Journey Steps ── */
.lp-step {
  display: flex; gap: 2rem;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}
.lp-step__marker {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0;
  width: 48px;
}
.lp-step__number {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  position: relative; z-index: 2;
}
.lp-step__line {
  width: 3px; flex: 1; min-height: 40px;
  background: linear-gradient(to bottom, var(--cloud-dark), var(--slate-light), var(--cloud-dark));
  border-radius: 2px; margin-top: .5rem;
}
.lp-step__content { flex: 1; min-width: 0; }
.lp-step__label {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .75rem;
}

/* ── Journey Cards ── */
.lp-card {
  display: flex; gap: 2rem;
  background: var(--white);
  border: 2px solid var(--cloud-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none; color: inherit;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  margin-bottom: 1rem;
}
.lp-card:hover {
  border-color: var(--card-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-3px);
}
.lp-card__icon {
  font-size: 3rem; flex-shrink: 0;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--card-accent) 6%, white);
  border-radius: 18px;
}
.lp-card__body { flex: 1; min-width: 0; }
.lp-card__title {
  font-size: 1.5rem; font-weight: 800;
  color: var(--ink); margin-bottom: .25rem;
  letter-spacing: -.01em;
}
.lp-card__subtitle {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 600;
  color: var(--card-accent);
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.lp-card__desc {
  font-size: 1.02rem; color: var(--slate);
  line-height: 1.75; margin-bottom: 1rem;
}
.lp-card__meta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 600;
  color: var(--slate-light);
  margin-bottom: .75rem;
}
.lp-card__topics {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.lp-card__topics span {
  font-size: .75rem; font-weight: 600;
  padding: .25rem .65rem; border-radius: 6px;
  background: var(--surface);
  color: var(--slate);
  border: 1px solid var(--cloud);
}
.lp-card__cta {
  font-size: 1rem; font-weight: 700;
  color: var(--card-accent);
  display: flex; align-items: center; gap: .3rem;
  margin-top: 1.25rem;
}
.lp-card__cta span { transition: transform .2s; }
.lp-card:hover .lp-card__cta span { transform: translateX(4px); }

/* ── Quick Context Q&A ── */
.lp-context {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.lp-context__item {
  background: var(--white);
  border: 1px solid var(--cloud-dark);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.lp-context__q {
  font-size: 1.02rem; font-weight: 700;
  color: var(--ink); margin-bottom: .35rem;
}
.lp-context__a {
  font-size: .95rem; color: var(--slate);
  line-height: 1.65;
}
.lp-context__a a {
  color: var(--accent); font-weight: 600;
}

@media (max-width: 768px) {
  .lp-card { flex-direction: column; gap: 1rem; }
  .lp-card__icon { width: 56px; height: 56px; font-size: 2rem; border-radius: 14px; }
  .lp-step { gap: 1rem; }
  .lp-step__marker { width: 36px; }
  .lp-step__number { width: 36px; height: 36px; font-size: 1rem; border-radius: 10px; }
  .lp-context { grid-template-columns: 1fr; }
}
