/* =========================================================================
   The AI Adoption Agency — site CSS (multi-page, re-skinned May 2026)
   Inherits all tokens from ./brand-tokens.css
   ========================================================================= */
@import url('./brand-tokens.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--pk-stone); }
body { font-family: var(--font-body); color: var(--pk-ink); }
img { max-width: 100%; }

/* ─── Containers ─── */
.pk-shell { display: flex; flex-direction: column; min-height: 100vh; }
.pk-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.pk-container-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ─── Header ─── */
.pk-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(242, 242, 242, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pk-line);
}
.pk-header.on-navy {
  background: rgba(10, 10, 10, 0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}
.pk-header .row { display: flex; align-items: center; height: 76px; gap: 28px; }
.pk-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}
.pk-brand .mark {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pk-rose);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pk-brand .mark svg { fill: var(--pk-navy); transform: translate(-1px, 0); }
.pk-header.on-navy .pk-brand .mark svg { fill: #fff; }
.pk-brand .name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.02em;
  color: var(--pk-navy);
}
.pk-header.on-navy .pk-brand .name { color: #fff; }

.pk-nav { display: flex; gap: 26px; margin-left: 18px; }
.pk-nav a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  color: var(--pk-navy); text-decoration: none;
  cursor: pointer; padding: 4px 0;
  transition: color var(--dur-quick) var(--ease-standard);
}
.pk-header.on-navy .pk-nav a { color: rgba(255,255,255,0.78); }
.pk-nav a:hover { color: var(--pk-rose-600); }
.pk-header.on-navy .pk-nav a:hover { color: #fff; }
.pk-nav a.active {
  text-decoration: underline;
  text-decoration-color: var(--pk-rose);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  color: var(--pk-navy);
}
.pk-header.on-navy .pk-nav a.active { color: #fff; }

.pk-cta-pill {
  margin-left: auto;
  background: var(--pk-rose); color: #fff;
  border: 0; border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  cursor: pointer;
  transition: background var(--dur-quick) var(--ease-standard), transform var(--dur-quick) var(--ease-standard);
}
.pk-cta-pill:hover { background: var(--pk-rose-600); }
.pk-cta-pill:active { transform: translateY(1px); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer;
  border-radius: 12px; padding: 14px 22px;
  text-decoration: none;
  transition: background var(--dur-quick) var(--ease-standard), transform var(--dur-quick) var(--ease-standard), color var(--dur-quick) var(--ease-standard);
}
.btn-primary  { background: var(--pk-rose); color: #fff; }
.btn-primary:hover  { background: var(--pk-rose-600); }
.btn-primary:active { transform: translateY(1px); }

.btn-navy { background: var(--pk-navy); color: #fff; }
.btn-navy:hover { background: var(--pk-navy-700); }

.btn-outline-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.36); padding: 12.5px 20px;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-outline-dark {
  background: transparent; color: var(--pk-navy);
  border: 1.5px solid var(--pk-navy); padding: 12.5px 20px;
}
.btn-outline-dark:hover { background: rgba(10,10,10,0.06); }

.btn-text {
  background: transparent; color: var(--pk-navy);
  padding: 14px 0;
  text-decoration: underline; text-decoration-color: var(--pk-rose);
  text-decoration-thickness: 2px; text-underline-offset: 5px;
}
.btn-text.light { color: #fff; text-decoration-color: var(--pk-rose); }

/* ─── Section base ─── */
.pk-section { padding: 112px 0; }
.pk-section.tight { padding: 80px 0; }
.pk-section.stone { background: var(--pk-stone); }
.pk-section.white { background: #fff; }
.pk-section.navy  { background: var(--pk-navy); color: #fff; }

.pk-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pk-rose);
  margin-bottom: 12px;
}

.pk-section h1, .pk-section h2 { text-wrap: balance; }
.pk-section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0 0 16px;
  max-width: 880px;
}
.pk-section.navy h2 { color: #fff; }
.pk-section .lead {
  font-size: 19px; line-height: 1.5; color: var(--pk-slate);
  max-width: 720px; margin: 0;
}
.pk-section.navy .lead { color: #C8CCD6; }

/* ─── Hero — NAVY ─── */
.pk-hero {
  background: var(--pk-navy); color: #fff;
  padding: 120px 0 128px;
  position: relative; overflow: hidden;
}
.pk-hero.short { padding: 88px 0 88px; }
.pk-hero .grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 72px; align-items: center;
}
.pk-hero.full .grid { grid-template-columns: 1fr; gap: 0; }
.pk-hero .eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pk-rose);
  margin-bottom: 16px;
}
.pk-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 72px; line-height: 1.0; letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.pk-hero h1 em { font-style: normal; color: var(--pk-rose); }
.pk-hero h1.smaller { font-size: 56px; line-height: 1.04; }
.pk-hero .sub {
  font-size: 21px; line-height: 1.45;
  color: rgba(255,255,255,0.85);
  margin: 0; max-width: 600px;
}
.pk-hero .support {
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin: 14px 0 0; max-width: 540px;
}
.pk-hero .ctas { display: flex; gap: 14px; margin-top: 36px; align-items: center; flex-wrap: wrap; }

/* hero mark (rose circle) */
.pk-hero-mark {
  position: relative; width: 360px; height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.pk-hero-mark .circle {
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--pk-rose);
}
.pk-hero-mark .cursor {
  position: absolute;
  width: 110px; height: 110px;
  left: 56px; top: 50%;
  transform: translateY(-30%);
}
.pk-hero-mark .cursor svg { width: 100%; height: 100%; fill: var(--pk-navy); }

/* secondary hero (about/services/why-claude/contact) - no mark, larger H1 */
.pk-hero.full h1 { max-width: 980px; }

/* ─── Adoption gap — numbered list ─── */
.adoption-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--pk-line);
  margin: 32px 0 40px;
  max-width: 760px;
}
.adoption-list li {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 16px; padding: 22px 0;
  border-bottom: 1px solid var(--pk-line);
  align-items: baseline;
  list-style: none;
}
.adoption-list .n {
  font-family: var(--font-mono);
  font-size: 14px; color: var(--pk-rose);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.adoption-list .text {
  font-size: 18px; line-height: 1.45; color: var(--pk-ink);
}
.kicker-quote {
  margin: 16px 0 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1.18; letter-spacing: -0.02em;
  color: var(--pk-navy);
  border-left: 3px solid var(--pk-rose);
  padding: 6px 0 6px 22px;
  max-width: 720px;
}

/* ─── Stats trio (the stakes) ─── */
.stakes-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 18px; margin: 8px 0 48px;
}
.stake-card {
  background: var(--pk-navy); color: #fff;
  border-radius: 20px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.stake-card .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 0.95;
  color: var(--pk-rose); letter-spacing: -0.03em;
}
.stake-card .label {
  font-family: var(--font-display); font-size: 11px;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.stake-card .body {
  font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.78);
  margin-top: auto;
}
.stake-card.text {
  background: var(--pk-rose); color: #fff;
}
.stake-card.text .quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.02em;
  color: #fff;
}

/* ─── Three-column service block ─── */
.col-three {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 24px;
}
.col-three .col {
  display: flex; flex-direction: column; gap: 12px;
}
.col-three .col .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pk-rose);
}
.col-three .col h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.18; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0;
}
.pk-section.navy .col-three .col h3 { color: #fff; }
.col-three .col p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--pk-ink); }
.pk-section.navy .col-three .col p { color: rgba(255,255,255,0.82); }
.pk-section.stone .col-three .col {
  background: #fff; border: 1px solid var(--pk-line);
  border-radius: 18px; padding: 26px;
}
.pk-section.white .col-three .col {
  border-top: 2px solid var(--pk-navy);
  padding-top: 22px;
}
.pk-section.navy .col-three .col {
  border-top: 2px solid var(--pk-rose);
  padding-top: 22px;
}

/* ─── 2x2 feature grid (Why Claude features) ─── */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 24px;
}
.feature-grid .feat {
  background: #fff; border: 1px solid var(--pk-line);
  border-radius: 20px; padding: 30px 28px;
}
.feature-grid .feat h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0 0 10px;
}
.feature-grid .feat p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--pk-ink); }

/* ─── Big CTA banner ─── */
.cta-banner {
  background: var(--pk-navy);
  border-radius: 28px;
  padding: 64px 56px;
  color: #fff;
  display: grid; grid-template-columns: 1.2fr auto;
  gap: 48px; align-items: center;
}
.cta-banner h2 { color: #fff; margin: 0; font-size: 42px; max-width: 620px; }
.cta-banner .sub { color: rgba(255,255,255,0.78); margin: 14px 0 0; font-size: 17px; line-height: 1.5; max-width: 560px; }
.cta-banner .ctas { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.cta-banner .ctas .meta { font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-mono); }

/* ─── Stages (services page) ─── */
.stages { display: flex; flex-direction: column; gap: 0; margin-top: 18px; }
.stage {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 28px; padding: 28px 0;
  border-top: 1px solid var(--pk-line);
}
.stage:last-child { border-bottom: 1px solid var(--pk-line); }
.stage .label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pk-rose);
}
.stage h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0 0 8px;
}
.stage p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--pk-ink); }

.service-block {
  background: #fff; border: 1px solid var(--pk-line);
  border-radius: 24px; padding: 44px;
  margin-top: 24px;
  display: grid; grid-template-columns: 220px 1fr;
  gap: 36px;
}
.service-block .meta .label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pk-rose);
  margin-bottom: 8px;
}
.service-block .meta .ord {
  font-family: var(--font-display); font-weight: 800;
  font-size: 52px; color: var(--pk-navy); line-height: 0.95;
  letter-spacing: -0.02em;
}
.service-block h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 30px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0 0 14px;
}
.service-block p { font-size: 17px; line-height: 1.55; color: var(--pk-ink); margin: 0 0 14px; }
.service-block .outcome {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--pk-stone);
  border-left: 3px solid var(--pk-rose);
  border-radius: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--pk-navy);
  line-height: 1.4;
}

/* ─── Pull quote / philosophy ─── */
.philosophy {
  text-align: center; max-width: 820px; margin: 0 auto;
}
.philosophy .dot {
  display: inline-block; width: 12px; height: 12px;
  border-radius: 50%; background: var(--pk-rose);
  margin-bottom: 28px;
}
.philosophy blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 40px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--pk-navy);
  text-wrap: balance;
}
.pk-section.navy .philosophy blockquote { color: #fff; }
.philosophy .attrib {
  font-family: var(--font-body);
  font-size: 14px; color: var(--pk-slate); margin-top: 22px;
}

/* ─── Contact form ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: start;
}
.contact-side h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--pk-navy); margin: 0 0 12px;
}
.contact-side .steps { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.contact-side .step {
  display: grid; grid-template-columns: 32px 1fr; gap: 14px; align-items: start;
}
.contact-side .step .n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pk-rose); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.contact-side .step p { margin: 4px 0 0; font-size: 16px; line-height: 1.5; color: var(--pk-ink); }

.contact-form-card {
  background: #fff; border: 1px solid var(--pk-line);
  border-radius: 20px; padding: 36px;
  box-shadow: var(--shadow-2);
}
.cf-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.04em; color: var(--pk-ink);
}
.cf-label .opt { font-weight: 400; color: var(--pk-slate); letter-spacing: 0; }
.cf-input, .cf-textarea, .cf-select {
  width: 100%; box-sizing: border-box;
  padding: 13px 14px;
  border: 1.5px solid var(--pk-line);
  border-radius: 10px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--pk-ink); background: #fff;
  outline: none;
  transition: border-color var(--dur-quick) var(--ease-standard), box-shadow var(--dur-quick) var(--ease-standard);
}
.cf-input:focus, .cf-textarea:focus, .cf-select:focus {
  border-color: var(--pk-navy);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.45);
}
.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
}
.cf-textarea { min-height: 96px; resize: vertical; line-height: 1.5; font-family: var(--font-body); }
.cf-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 4px;
}
.cf-foot .meta { font-size: 13px; color: var(--pk-slate); font-family: var(--font-mono); }
.cf-foot .meta a { color: var(--pk-navy); text-decoration: underline; text-decoration-color: var(--pk-rose); text-decoration-thickness: 2px; }

.cf-thanks { text-align: center; padding: 24px 8px; }
.cf-thanks .check {
  width: 56px; height: 56px; border-radius: 50%; background: var(--pk-rose); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.cf-thanks h3 { font-family: var(--font-display); font-size: 26px; color: var(--pk-navy); margin: 0 0 8px; letter-spacing: -0.02em; }
.cf-thanks p { font-size: 16px; color: var(--pk-ink); margin: 0; line-height: 1.5; max-width: 360px; margin-inline: auto; }

/* ─── Why Claude — Anthropic story ─── */
.anthropic-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.anthropic-story .body p { margin: 0 0 16px; font-size: 17px; line-height: 1.6; color: var(--pk-ink); }
.anthropic-story .body p:last-child { margin-bottom: 0; }
.anthropic-story .quote-block {
  background: var(--pk-navy); color: #fff;
  border-radius: 24px; padding: 36px 32px;
  position: sticky; top: 100px;
}
.anthropic-story .quote-block .dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: var(--pk-rose); margin-bottom: 18px;
}
.anthropic-story .quote-block blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  font-size: 26px; line-height: 1.25; letter-spacing: -0.02em;
}
.anthropic-story .quote-block .attrib { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.6); font-family: var(--font-mono); }

/* ─── Footer ─── */
.pk-footer { background: var(--pk-navy); color: #fff; padding: 72px 0 36px; }
.pk-footer .top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; align-items: start; }
.pk-footer .brand-block { display: flex; flex-direction: column; gap: 16px; }
.pk-footer .brand-block .strapline {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: #fff; letter-spacing: -0.02em;
}
.pk-footer .brand-block .strapline em { font-style: normal; color: var(--pk-rose); }
.pk-footer .brand-block .philosophy-line {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.6); line-height: 1.5;
  max-width: 340px;
}
.pk-footer .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pk-footer .col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pk-rose);
  margin: 0 0 14px;
}
.pk-footer .col a {
  display: block; color: rgba(255,255,255,0.78);
  text-decoration: none; font-size: 14px;
  padding: 5px 0; cursor: pointer;
}
.pk-footer .col a:hover { color: #fff; }
.pk-footer .bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}

/* ─── Sticky CTA on scroll ─── */
.sticky-cta {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 70;
  transform: translateY(120%);
  transition: transform var(--dur-base) var(--ease-emphasis);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn {
  box-shadow: var(--shadow-3);
  padding: 14px 24px;
}

/* ─── Responsive guards ─── */
@media (max-width: 980px) {
  .pk-hero h1 { font-size: 48px; }
  .pk-hero .grid { grid-template-columns: 1fr; gap: 32px; }
  .pk-hero-mark { width: 240px; height: 240px; margin: 0 auto; }
  .pk-hero-mark .circle { width: 220px; height: 220px; }
  .pk-section h2 { font-size: 36px; }
  .stakes-grid, .col-three, .feature-grid, .contact-grid, .anthropic-story { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; padding: 32px; }
  .cta-banner { grid-template-columns: 1fr; padding: 44px 32px; }
  .pk-footer .top { grid-template-columns: 1fr; gap: 32px; }
  .pk-footer .cols { grid-template-columns: 1fr 1fr; }
  .stage { grid-template-columns: 1fr; gap: 8px; }
  .pk-nav { display: none; }
}

/* =========================================================================
   AAA brand overrides
   --------------------------------------------------------------------------
   The original Praxis palette used rose as a foreground accent on light
   surfaces. Agency Yellow can't sit as text on Bone/White (contrast fails),
   so on light surfaces yellow becomes either:
     (a) a fill block with ink text (eyebrows, tags), or
     (b) a structural rule / underline / decorative dot.
   On dark surfaces (Ink/Carbon) yellow stays as a foreground colour - fine.
   ========================================================================= */

/* Yellow CTAs use ink text, not white. */
.btn-primary,
.btn-primary:hover,
.pk-cta-pill,
.pk-cta-pill:hover,
.sticky-cta .btn,
.sticky-cta .btn:hover { color: var(--ink); }

/* Eyebrow: yellow highlight block with ink text on light surfaces. */
.pk-eyebrow {
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}
/* On dark surfaces keep the same yellow block (still yellow on dark, ink on yellow). */
.pk-section.navy .pk-eyebrow { background: var(--yellow); color: var(--ink); }

/* Hero eyebrow lives on Ink — plain yellow text reads cleanly there. */
.pk-hero .eyebrow {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  padding: 0;
  margin-bottom: 16px;
}

/* Foreground accents that were rose now become ink on light surfaces. */
.adoption-list .n            { color: var(--ink); }
.col-three .col .num         { color: var(--ink); }
.stage .label                { color: var(--ink); }
.service-block .meta .label  { color: var(--ink); }

/* Outcome callout — keep the yellow left rule as a structural accent,
   but make the "Outcome ·" label ink, not yellow text. */
.service-block .outcome strong { color: var(--ink) !important; }

/* Third stake-card variant: yellow fill block, ink text. */
.stake-card.text {
  background: var(--yellow);
  color: var(--ink);
}
.stake-card.text .label { color: rgba(10, 10, 10, 0.62) !important; }
.stake-card.text .quote { color: var(--ink); }

/* Email link in the contact-card (uses inline rose for the eyebrow label).
   Replace that with the standard yellow block. */
.contact-side a[href^="mailto:"] {
  text-decoration-color: var(--yellow);
}

/* Anthropic-story attrib was muted white; small label, leave it. */

/* Footer link underlines + accents work as-is (yellow on ink). */

/* Hero h1 em: bold yellow lift on Ink hero — keep. */
.pk-hero h1 em { color: var(--yellow); }

/* Strapline em in footer also stays yellow on ink. */
.pk-footer .brand-block .strapline em { color: var(--yellow); }

/* ---- Brand lockup (header + footer) ----
   We now render the lockup as an inline SVG icon + wordmark instead of
   the legacy cursor-in-circle mark. */
.pk-brand .mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;            /* the icon brings its own dark tile */
  padding: 0;
  overflow: hidden;
}
.pk-brand .mark img { width: 100%; height: 100%; display: block; }

/* Footer mark sits on Ink already — use the reversed lockup at larger size. */
.pk-footer .pk-brand .mark {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}
.pk-footer .pk-brand .mark img { width: auto; height: 56px; }
.pk-footer .pk-brand .name { display: none; }   /* the reversed lockup already includes the wordmark */

/* Wordmark colour: ink on light header, white on dark header (was navy/#fff). */
.pk-brand .name { color: var(--ink); }
.pk-header.on-navy .pk-brand .name { color: var(--white); }

/* Step number circles in the contact page — yellow disc with ink text. */
.contact-side .step .n { color: var(--ink); }

/* =========================================================================
   Services page — 3-column offerings grid
   ========================================================================= */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
  align-items: stretch;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--pk-line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.svc-card__head { display: flex; flex-direction: column; gap: 6px; }
.svc-card__step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 6px;
}
.svc-card__head h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.svc-card__sub {
  font-size: 15px;
  line-height: 1.5;
  color: var(--graphite);
  margin: 2px 0 0;
}
.svc-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-card__points li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--pk-line);
}
.svc-card__points strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.svc-card__points span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--graphite);
}
@media (max-width: 720px) {
  .svc-grid { grid-template-columns: 1fr; gap: 18px; }
  .svc-card { padding: 28px 24px; }
  .svc-card__head h3 { font-size: 28px; }
}

/* Hero mark — was a rose circle with a cursor SVG. Now the full reversed
   logo, positioned in the top-right with its bottom roughly in line with the
   "AI made simple" headline. Stays side-by-side until proper mobile width
   so the project preview pane (~900px) still shows the desktop layout. */
.pk-hero { position: relative; }
.pk-hero-mark {
  position: absolute;
  top: 130px;
  right: 40px;
  width: 380px;
  height: auto;
}
.pk-hero-mark img {
  display: block;
  width: 100%;
  height: auto;
}

/* Override the original 980px stacking — keep hero side-by-side down to 720px. */
@media (max-width: 980px) and (min-width: 721px) {
  .pk-hero .grid {
    grid-template-columns: minmax(0, 1.15fr) 320px !important;
    gap: 32px !important;
  }
  .pk-hero h1 { font-size: 56px !important; }
  .pk-hero-mark {
    position: absolute !important;
    top: 120px !important;
    right: 32px !important;
    width: 280px !important;
    margin: 0 !important;
  }
}
@media (max-width: 720px) {
  .pk-hero-mark {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 24px auto 0;
  }
}

/* Yellow stake card body text — needs to be ink, not white. */
.stake-card.text .body,
.stake-card.text .quote { color: var(--ink); }

/* Updated stake-card layout — match the Solution cards' structure.
   Dark cards: white h3 title + white body paragraph.
   Yellow card: ink h3 title + ink body paragraph. */
.stake-card { min-height: 0; gap: 6px; padding: 28px 26px; }
.stake-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.stake-card .body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  margin: 6px 0 0;
}
.stake-card.text h3 { color: var(--ink); }
.stake-card.text .body { color: var(--ink); }

