/* ============================================================
   purvis.ai — CxO Fix-It Operator skin (v2)
   2026-05-01
   Replaces /wp-content/themes/astra/custom-purvis.css
   ============================================================ */

:root {
    /* Restrained palette — authority, not flash */
    --rp-bg:        #0b0d12;          /* near-black, slight blue undertone */
    --rp-surface:   #11141c;          /* card surface */
    --rp-surface-2: #161a25;          /* nested/hover */
    --rp-border:    rgba(255,255,255,0.08);
    --rp-border-strong: rgba(255,255,255,0.16);

    --rp-text:      #d6dae4;          /* body */
    --rp-text-mute: #8a92a3;          /* secondary */
    --rp-text-dim:  #5b6373;          /* tertiary */
    --rp-heading:   #f4f6fa;          /* heading */

    --rp-accent:    #d97706;          /* burnt orange — operator/warmth, not tech-bro blue */
    --rp-accent-hi: #f59e0b;          /* hover */
    --rp-accent-mute:rgba(217,119,6,0.12);

    --rp-mono: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    --rp-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --rp-radius: 10px;
    --rp-radius-lg: 16px;
    --rp-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 24px rgba(0,0,0,0.3);
}

body {
    font-family: var(--rp-sans);
    background: var(--rp-bg);
    color: var(--rp-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--rp-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

p { line-height: 1.65; }

a { color: var(--rp-accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--rp-accent-hi); }

/* ── Header ──────────────────────────────────────────────── */
.ast-primary-header-bar, .site-header {
    background: var(--rp-bg) !important;
    border-bottom: 1px solid var(--rp-border) !important;
    backdrop-filter: blur(12px);
}

.main-header-menu a, .ast-header-custom-item a {
    color: var(--rp-heading) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.main-header-menu a:hover { color: var(--rp-accent) !important; }

/* ── Hero ────────────────────────────────────────────────── */
.rp-hero {
    text-align: left;
    padding: 120px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.rp-hero::before {
    content: "";
    position: absolute;
    top: 80px; left: 24px;
    width: 80px; height: 4px;
    background: var(--rp-accent);
    border-radius: 2px;
}

.rp-eyebrow {
    font-family: var(--rp-mono);
    font-size: 0.8rem;
    color: var(--rp-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
}

.rp-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 24px;
    max-width: 18ch;
    line-height: 1.05;
}

.rp-hero h1 em {
    font-style: normal;
    color: var(--rp-accent);
}

.rp-hero .rp-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--rp-text-mute);
    line-height: 1.6;
    max-width: 56ch;
    margin: 0 0 36px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.rp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--rp-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.18s ease;
    margin-right: 12px;
    border: 1px solid transparent;
    line-height: 1;
}

.rp-btn-primary {
    background: var(--rp-accent);
    color: #1a1308 !important;
    border-color: var(--rp-accent);
}

.rp-btn-primary:hover {
    background: var(--rp-accent-hi);
    color: #1a1308 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(217,119,6,0.25);
}

.rp-btn-outline {
    background: transparent;
    color: var(--rp-heading) !important;
    border-color: var(--rp-border-strong);
}

.rp-btn-outline:hover {
    background: var(--rp-surface);
    border-color: var(--rp-accent);
    color: var(--rp-accent) !important;
}

/* ── Section scaffold ────────────────────────────────────── */
.rp-section {
    padding: 80px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rp-section-header {
    margin-bottom: 48px;
    max-width: 56ch;
}

.rp-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 16px;
}

.rp-section .rp-section-lede {
    color: var(--rp-text-mute);
    font-size: 1.05rem;
}

/* ── Engagement models grid ──────────────────────────────── */
.rp-engagements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.rp-engagement-card {
    background: var(--rp-surface);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius-lg);
    padding: 32px 28px;
    transition: all 0.2s;
}

.rp-engagement-card:hover {
    border-color: var(--rp-accent);
    background: var(--rp-surface-2);
    transform: translateY(-2px);
}

.rp-engagement-card .rp-eng-tag {
    font-family: var(--rp-mono);
    font-size: 0.75rem;
    color: var(--rp-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.rp-engagement-card h3 {
    font-size: 1.4rem;
    margin: 0 0 12px;
}

.rp-engagement-card p {
    color: var(--rp-text-mute);
    font-size: 0.95rem;
    margin: 0 0 20px;
}

.rp-engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-engagement-card li {
    padding: 8px 0;
    color: var(--rp-text);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--rp-border);
}

.rp-engagement-card li:last-child { border-bottom: none; }

.rp-engagement-card li::before {
    content: "→ ";
    color: var(--rp-accent);
    font-family: var(--rp-mono);
    margin-right: 6px;
}

/* ── Outcomes / case study tiles ─────────────────────────── */
.rp-outcomes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.rp-outcome {
    background: var(--rp-surface);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.rp-outcome::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rp-accent) 0%, transparent 100%);
}

.rp-outcome-meta {
    font-family: var(--rp-mono);
    font-size: 0.75rem;
    color: var(--rp-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.rp-outcome h3 {
    font-size: 1.15rem;
    margin: 0 0 12px;
    line-height: 1.3;
}

.rp-outcome .rp-outcome-metric {
    font-family: var(--rp-mono);
    font-size: 2rem;
    color: var(--rp-accent);
    font-weight: 700;
    margin: 16px 0 4px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.rp-outcome .rp-outcome-metric-label {
    color: var(--rp-text-mute);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.rp-outcome p {
    color: var(--rp-text-mute);
    font-size: 0.92rem;
    margin: 0;
}

/* ── Proof bar / Phoenix tiles ───────────────────────────── */
.rp-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.rp-proof-tile {
    background: var(--rp-surface);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    padding: 20px;
    transition: border-color 0.15s;
}

.rp-proof-tile:hover { border-color: var(--rp-border-strong); }

.rp-proof-tile h4 {
    font-size: 1rem;
    margin: 0 0 6px;
}

.rp-proof-tile p {
    font-size: 0.85rem;
    color: var(--rp-text-mute);
    margin: 0;
}

/* ── CTA band ────────────────────────────────────────────── */
.rp-cta-band {
    margin: 80px 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--rp-surface) 0%, var(--rp-surface-2) 100%);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius-lg);
    padding: 56px 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.rp-cta-band h2 {
    font-size: 1.8rem;
    margin: 0 0 8px;
    max-width: 24ch;
}

.rp-cta-band p {
    color: var(--rp-text-mute);
    margin: 0;
    max-width: 40ch;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 700px) {
    .rp-hero { padding: 80px 20px 60px; }
    .rp-section { padding: 60px 20px; }
    .rp-cta-band { padding: 36px 24px; flex-direction: column; align-items: flex-start; }
}

/* ── Subtle entrance animation ──────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .rp-hero h1, .rp-hero .rp-lede, .rp-engagement-card, .rp-outcome {
        animation: rp-fade-up 0.6s ease both;
    }
    .rp-hero .rp-lede { animation-delay: 0.1s; }
    .rp-engagement-card:nth-child(2) { animation-delay: 0.1s; }
    .rp-engagement-card:nth-child(3) { animation-delay: 0.2s; }
    .rp-outcome:nth-child(2) { animation-delay: 0.1s; }
    .rp-outcome:nth-child(3) { animation-delay: 0.2s; }
    .rp-outcome:nth-child(4) { animation-delay: 0.3s; }
}

@keyframes rp-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   v2 hardening (2026-05-01) — beat Astra's light defaults so
   the dark theme actually renders, and fix the outline button
   visibility on every background.
   ============================================================ */

/* Force the dark canvas — Astra otherwise wins with a light body bg. */
html, body,
.site,
.ast-container,
#content,
.site-content,
#primary,
.entry-content {
    background: var(--rp-bg) !important;
    color: var(--rp-text);
}

/* Body text colour. */
body, body p, body li {
    color: var(--rp-text) !important;
}
h1, h2, h3, h4, h5, h6,
.entry-title, .site-title, .site-title a {
    color: var(--rp-heading) !important;
}

/* Hide Astra's "Home" page title on the home page (we have our own hero). */
body.home .entry-header,
body.page-id-17 .entry-header,
body.page-id-18 .entry-header,
body.page-id-312 .entry-header {
    display: none !important;
}

/* CTA row layout — sits beneath the hero lede. */
.rp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

/* Make the outline button visible against the dark canvas. */
.rp-btn-outline {
    border: 1px solid var(--rp-border-strong) !important;
    color: var(--rp-heading) !important;
}
.rp-btn-link {
    color: var(--rp-text-mute) !important;
    border: 1px solid transparent !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
}
.rp-btn-link:hover { color: var(--rp-accent) !important; }

/* Body link colour cleanup — Astra default is bright blue. */
.entry-content a:not(.rp-btn) { color: var(--rp-accent); }
.entry-content a:not(.rp-btn):hover { color: var(--rp-accent-hi); }

/* Header bar match the dark theme. */
.site-header,
.ast-primary-header-bar {
    background: var(--rp-bg) !important;
    border-bottom: 1px solid var(--rp-border) !important;
}
.site-header .main-header-menu a,
.site-header .site-title a {
    color: var(--rp-heading) !important;
}

/* ============================================================
   v2 polish — clash fixes (2026-05-02)
   ============================================================ */

/* Strip underlines from buttons (Astra's .entry-content a rule was winning). */
.rp-btn,
.rp-btn:hover,
.rp-btn:visited,
.rp-cta-row a,
.rp-cta-band-actions a {
    text-decoration: none !important;
}

/* Phoenix-as-proof tile links: white heading + no underline. */
.rp-proof-tile a,
.rp-proof-tile a:visited {
    color: var(--rp-heading) !important;
    text-decoration: none !important;
}
.rp-proof-tile a:hover { color: var(--rp-accent) !important; }
/* Body copy inside the tiles uses muted text, not the accent link colour. */
.rp-proof-tile p,
.rp-proof-tile p a:not(:hover) {
    color: var(--rp-text-mute) !important;
}

/* Cookie banner — match the warm-accent palette instead of stock blue. */
#wpcc-banner button[aria-label*="Accept" i],
#wpcc-banner .wpcc-accept,
#wpcc-banner button:first-of-type {
    background: var(--rp-accent) !important;
    color: #fff !important;
    border: 1px solid var(--rp-accent) !important;
}
#wpcc-banner button[aria-label*="Reject" i],
#wpcc-banner .wpcc-reject,
#wpcc-banner button:last-of-type {
    background: transparent !important;
    color: var(--rp-text) !important;
    border: 1px solid var(--rp-border-strong) !important;
}
#wpcc-banner {
    background: var(--rp-surface) !important;
    color: var(--rp-text) !important;
    border-top: 1px solid var(--rp-border) !important;
}

/* The whole tile is the anchor — strip Astra's inherited underline. */
a.rp-proof-tile,
a.rp-proof-tile:visited,
a.rp-proof-tile h4,
a.rp-proof-tile p {
    text-decoration: none !important;
}
a.rp-proof-tile h4 { color: var(--rp-heading) !important; }
a.rp-proof-tile p  { color: var(--rp-text-mute) !important; }
a.rp-proof-tile:hover h4 { color: var(--rp-accent) !important; }

/* ============================================================
   v2 IMPRESSIVE — gravitas pass for business buyers (2026-05-02)
   Hero portrait slot, serif display, trust strip, subtle depth,
   refined rhythm. Designed to make a CISO/CPO/CTO/CIO buyer
   take Ryan seriously inside 5 seconds.
   ============================================================ */

/* ── Display serif for headlines (gravitas vs. tech-bro sans) ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

h1, h2,
.rp-section h2,
.rp-cta-band h2 {
    font-family: 'Fraunces', 'Inter', Georgia, serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em;
    font-optical-sizing: auto;
    line-height: 1.05;
}

/* ── Hero: 2-column layout with portrait slot ─────────────── */
.rp-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 32px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}
.rp-hero-text { min-width: 0; }
.rp-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    margin: 16px 0 24px;
}
.rp-hero h1 em {
    font-style: italic;
    color: var(--rp-accent);
    font-weight: 600;
}
.rp-hero .rp-lede {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--rp-text);
    max-width: 56ch;
    margin: 0 0 32px;
}

/* Portrait frame — works with or without an image. Until a real
   <img> lands, the empty <div> still shows a tasteful dark panel
   so the layout doesn't collapse. */
.rp-hero-portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--rp-radius-lg);
    overflow: hidden;
    background:
        radial-gradient(140% 90% at 30% 20%, rgba(217,119,6,0.12), transparent 55%),
        linear-gradient(160deg, var(--rp-surface-2) 0%, var(--rp-bg) 100%);
    border: 1px solid var(--rp-border);
    box-shadow: var(--rp-shadow);
}
.rp-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    /* Soft inner edge so the photo blends into the dark canvas. */
    mask-image: radial-gradient(120% 110% at 50% 40%, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(120% 110% at 50% 40%, #000 60%, transparent 100%);
}
/* Subtle top-left accent rule on the portrait frame. */
.rp-hero-portrait::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px;
    width: 48px; height: 2px;
    background: var(--rp-accent);
    z-index: 2;
}

/* On smaller screens, stack vertically and shrink the portrait. */
@media (max-width: 900px) {
    .rp-hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 64px 24px 40px;
    }
    .rp-hero-portrait {
        max-width: 320px;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }
}

/* ── Hero ambient glow on the canvas behind the hero ─────── */
body.home #content,
body.page-id-17 #content {
    position: relative;
}
body.home #content::before,
body.page-id-17 #content::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 720px;
    background:
        radial-gradient(60% 50% at 80% 0%, rgba(217,119,6,0.08), transparent 70%),
        radial-gradient(50% 40% at 0% 30%, rgba(99,102,241,0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
body.home .rp-hero,
body.home .rp-section,
body.home .rp-cta-band {
    position: relative;
    z-index: 1;
}

/* ── Trust strip: small caps mono, subtle separators ──────── */
.rp-trust-strip {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px 48px;
    border-top: 1px solid var(--rp-border);
    border-bottom: 1px solid var(--rp-border);
    background: rgba(255,255,255,0.015);
}
.rp-trust-item {
    font-family: var(--rp-mono);
    font-size: 0.78rem;
    color: var(--rp-text-mute);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.rp-trust-item strong {
    color: var(--rp-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0;
    font-family: var(--rp-sans);
    text-transform: none;
}

/* ── Section header polish ─────────────────────────────── */
.rp-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 32px;
}
.rp-section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin: 0 0 12px;
}
.rp-section-lede {
    color: var(--rp-text-mute);
    font-size: 1.05rem;
    max-width: 60ch;
    line-height: 1.55;
}

/* ── Engagement cards: more presence ─────────────────────── */
.rp-engagement-card {
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.rp-engagement-card:hover {
    transform: translateY(-2px);
    border-color: var(--rp-border-strong);
    background: var(--rp-surface-2);
}
.rp-eng-tag,
.rp-engagement-card .rp-eng-tag {
    color: var(--rp-text-dim) !important;
}
.rp-engagement-card h3 {
    font-family: 'Fraunces', 'Inter', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ── Outcome metric tiles: bigger numerals, more breath ──── */
.rp-outcome-card .rp-metric,
.rp-outcome-card h3 + p:has(+ p) {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--rp-accent);
    font-family: var(--rp-mono);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

/* ── Phoenix-as-proof: bigger tiles, optional screenshot frame ── */
.rp-proof {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.rp-proof-tile {
    padding: 28px 24px;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.rp-proof-tile:hover {
    transform: translateY(-2px);
    background: var(--rp-surface-2);
}
.rp-proof-tile h4 {
    font-size: 1.1rem;
    font-family: 'Fraunces', 'Inter', Georgia, serif;
    font-weight: 600;
}
/* Optional screenshot — set as background-image on .rp-proof-tile-img */
.rp-proof-tile-img {
    margin: 16px -24px -28px;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: top center;
    border-top: 1px solid var(--rp-border);
    opacity: 0.85;
    transition: opacity 0.2s;
}
.rp-proof-tile:hover .rp-proof-tile-img { opacity: 1; }

/* ── CTA band: more presence ─────────────────────────────── */
.rp-cta-band {
    background:
        radial-gradient(80% 100% at 100% 0%, rgba(217,119,6,0.08), transparent 60%),
        var(--rp-surface);
    border: 1px solid var(--rp-border);
    box-shadow: var(--rp-shadow);
    border-radius: var(--rp-radius-lg);
    padding: 48px 56px;
}
.rp-cta-band h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0 0 8px;
}

/* ── Footer cleanup — match dark theme ───────────────────── */
.site-below-footer-wrap,
.ast-footer-copyright,
.ast-footer-copyright * {
    background: var(--rp-bg) !important;
    color: var(--rp-text-mute) !important;
}
.ast-footer-copyright a {
    color: var(--rp-accent) !important;
    text-decoration: none !important;
}

/* ============================================================
   v2 polish-2 — better photo blend + trust strip rhythm
   ============================================================ */

/* Photo treatment: stronger feather, slight desat to integrate with dark canvas */
.rp-hero-portrait {
    background:
        radial-gradient(140% 90% at 30% 20%, rgba(217,119,6,0.18), transparent 55%),
        linear-gradient(160deg, var(--rp-surface-2) 0%, var(--rp-bg) 100%);
}
.rp-hero-portrait img {
    object-position: center 25%;
    /* Aggressive radial mask — feather white edges into the dark canvas */
    mask-image: radial-gradient(80% 95% at 50% 40%, #000 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
    -webkit-mask-image: radial-gradient(80% 95% at 50% 40%, #000 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
    /* Slight integration adjustments */
    filter: contrast(0.95) saturate(0.95);
    mix-blend-mode: normal;
}
/* Inset shadow to feather the rectangle further into the dark surround */
.rp-hero-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset 0 0 80px 24px var(--rp-bg),
        inset 0 0 0 1px var(--rp-border);
    border-radius: inherit;
    z-index: 2;
}

/* Trust strip — give items more horizontal breathing room, prevent ugly wraps */
.rp-trust-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 32px;
    padding: 28px 32px;
    align-items: center;
}
.rp-trust-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.rp-trust-item strong {
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .rp-trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .rp-trust-strip { grid-template-columns: 1fr; }
}

/* H1 — tighter line, avoid the lonely "days." wrap */
.rp-hero h1 {
    max-width: 14ch;
    font-size: clamp(2.25rem, 4.4vw, 3.75rem);
    line-height: 1.02;
}

/* ============================================================
   v2 timeline — "What 90 days actually looks like"
   Adds method credibility under the slogan. CxO buyers want
   to see a process, not just a promise.
   ============================================================ */

.rp-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid var(--rp-border);
}
.rp-timeline-step {
    padding: 32px 24px 28px;
    border-right: 1px solid var(--rp-border);
    position: relative;
}
.rp-timeline-step:last-child { border-right: none; }
.rp-timeline-step::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 32px; height: 2px;
    background: var(--rp-accent);
}
.rp-timeline-when {
    font-family: var(--rp-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rp-accent);
    margin-bottom: 8px;
}
.rp-timeline-what {
    font-family: 'Fraunces', 'Inter', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--rp-heading);
    margin: 0 0 12px;
    line-height: 1.2;
}
.rp-timeline-detail {
    color: var(--rp-text-mute);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .rp-timeline { grid-template-columns: 1fr 1fr; }
    .rp-timeline-step:nth-child(2) { border-right: none; }
}
@media (max-width: 600px) {
    .rp-timeline { grid-template-columns: 1fr; }
    .rp-timeline-step { border-right: none; border-bottom: 1px solid var(--rp-border); }
    .rp-timeline-step:last-child { border-bottom: none; }
}

/* ============================================================
   v2 fit-check — "Is this a fit?" qualifier panel
   Two columns: yes-if / not-if. Rare on operator sites and
   reads as confidence rather than gatekeeping when done right.
   ============================================================ */

.rp-fit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.rp-fit-card {
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    padding: 28px 28px 24px;
    background: var(--rp-surface);
}
.rp-fit-card.is-yes {
    border-color: rgba(217,119,6,0.35);
    background:
        linear-gradient(160deg, rgba(217,119,6,0.06), transparent 60%),
        var(--rp-surface);
}
.rp-fit-tag {
    font-family: var(--rp-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rp-text-mute);
    margin: 0 0 12px;
}
.rp-fit-card.is-yes .rp-fit-tag { color: var(--rp-accent); }
.rp-fit-card h3 {
    font-family: 'Fraunces', 'Inter', Georgia, serif;
    font-weight: 600;
    font-size: 1.35rem;
    margin: 0 0 16px;
    color: var(--rp-heading);
    line-height: 1.2;
}
.rp-fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rp-fit-list li {
    padding: 10px 0;
    border-top: 1px solid var(--rp-border);
    color: var(--rp-text);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.rp-fit-list li::before {
    color: var(--rp-text-dim);
    flex-shrink: 0;
    width: 14px;
    font-family: var(--rp-mono);
    font-size: 1.1rem;
    line-height: 1.4;
}
.rp-fit-card.is-yes .rp-fit-list li::before { content: '✓'; color: var(--rp-accent); }
.rp-fit-card.is-no  .rp-fit-list li::before { content: '—'; color: var(--rp-text-dim); }

@media (max-width: 720px) {
    .rp-fit { grid-template-columns: 1fr; }
}

/* ============================================================
   Capability-by-role cards — replaces the fabricated outcomes
   section. Same visual rhythm, no invented numbers.
   ============================================================ */

.rp-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.rp-cap-card {
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    padding: 28px 24px 24px;
    background: var(--rp-surface);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.rp-cap-card:hover {
    border-color: var(--rp-border-strong);
    background: var(--rp-surface-2);
    transform: translateY(-2px);
}
.rp-cap-role {
    font-family: var(--rp-mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rp-accent);
    margin: 0 0 12px;
}
.rp-cap-card h3 {
    font-family: 'Fraunces', 'Inter', Georgia, serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin: 0 0 16px;
    color: var(--rp-heading);
    line-height: 1.25;
}
.rp-cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rp-cap-list li {
    padding: 8px 0;
    border-top: 1px solid var(--rp-border);
    color: var(--rp-text-mute);
    font-size: 0.92rem;
    line-height: 1.5;
}
.rp-cap-list li:first-child { border-top: none; padding-top: 0; }
