/* ═══════════════════════════════════════════════════════════
   PERSONA PAGES — GM / GSM / PD
   Editorial, print-inspired. No AI gradients.
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --serif: 'Libre Baskerville', Georgia, serif;
    --sans: 'Inter Tight', 'Source Sans 3', Arial, sans-serif;
}

/* ── Page base ─────────────────────────────────────── */
.persona-page {
    background: #070c14;
    color: #dde4ec;
    min-height: 100vh;
    font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════
   HERO — left-aligned, editorial
   ═══════════════════════════════════════════════════════════ */
.persona-hero {
    padding: 110px clamp(24px, 6vw, 80px) 56px;
    position: relative;
    overflow: hidden;
}
.persona-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 30% 50%, var(--hero-glow, rgba(90,120,160,0.06)) 0%, transparent 70%);
    pointer-events: none;
}
.persona-hero-inner {
    max-width: 680px;
    position: relative;
}

/* Badge — monospace, no pill, no gradient */
.persona-badge {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.persona-badge::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    background: var(--accent);
}

/* Persona accent colors — ink, not neon */
.gm-hero   { --accent: #7ea8d4; --hero-glow: rgba(90,120,160,0.06); --accent-dim: rgba(126,168,212,0.1); --accent-border: rgba(126,168,212,0.2); }
.gsm-hero  { --accent: #d4896a; --hero-glow: rgba(180,110,80,0.06);  --accent-dim: rgba(212,137,106,0.1); --accent-border: rgba(212,137,106,0.2); }
.pd-hero   { --accent: #6db389; --hero-glow: rgba(90,160,120,0.06);  --accent-dim: rgba(109,179,137,0.1); --accent-border: rgba(109,179,137,0.2); }

.persona-hero h1 {
    font-family: var(--sans);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
}

.persona-subtitle {
    font-family: var(--serif);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.75;
    color: #8a9aad;
    max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════
   ROADMAP — numbered steps with progress line
   ═══════════════════════════════════════════════════════════ */
.roadmap {
    max-width: 840px;
    margin: 0 auto;
    padding: 60px clamp(24px, 6vw, 48px) 40px;
}
.roadmap-intro h2 {
    font-family: var(--sans);
    font-size: clamp(1.6rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.roadmap-intro p {
    font-family: var(--serif);
    font-size: 1rem;
    color: #8a9aad;
}

/* ── STEP ROW ──────────────────────────────────────── */
.step-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 clamp(16px, 3vw, 28px);
    margin-bottom: 36px;
    position: relative;
    text-decoration: none;
    color: inherit;
}

/* ── STEP NUMBER — monospace with progress line ──────── */
.step-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2px;
}
.step-number span {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-border);
    background: rgba(7,12,20,0.8);
    position: relative;
    z-index: 2;
}
.step-row:not(:last-child) .step-number::after {
    content: '';
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--accent-border), transparent);
    margin-top: 6px;
}

/* ── STEP CARD — offset shadow, no border-radius ─────── */
.step-card {
    background: #0d1520;
    border: 1px solid var(--accent-border);
    padding: clamp(20px, 3vw, 32px);
    position: relative;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.35);
    transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
    box-shadow: 7px 7px 0 rgba(0,0,0,0.4);
    transform: translate(-1px, -1px);
}

/* Highlighted step (DREAM for GM) */
.step-card.gm-highlight   { border-color: rgba(126,168,212,0.3); background: #0d1a2a; }
.step-card.gsm-highlight  { border-color: rgba(212,137,106,0.3); background: #1a120d; }
.step-card.pd-highlight   { border-color: rgba(109,179,137,0.3); background: #0d1a14; }

/* ── STEP ICON ──────────────────────────────────────── */
.step-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--accent);
}
.step-icon svg { width: 22px; height: 22px; }

/* ── STEP TEXT ──────────────────────────────────────── */
.step-card h3 {
    font-family: var(--sans);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.dream-acronym {
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    margin-top: -6px;
}
.step-card > p {
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.7;
    color: #8a9aad;
    margin-bottom: 18px;
}

/* ── REVENUE BOX ────────────────────────────────────── */
.step-revenue {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 16px 18px;
    margin-bottom: 14px;
}
.rev-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}
.step-revenue > p {
    font-family: var(--serif);
    font-size: 0.88rem;
    line-height: 1.7;
    color: #8a9aad;
    margin: 0;
}

/* ── REVENUE MATH TABLE ─────────────────────────────── */
.revenue-math { margin-bottom: 10px; }
.math-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-family: var(--serif);
    font-size: 0.88rem;
    color: #8a9aad;
}
.math-row:last-child { border-bottom: none; }
.math-val {
    font-family: var(--mono);
    font-weight: 700;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.math-total {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 2px solid var(--accent-border);
}
.math-total .math-val {
    font-size: 1rem;
    color: #fff;
}

/* ── TOOL TAGS — monospace, no border-radius ─────────── */
.step-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tool-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    color: var(--accent);
    border: 1px solid var(--accent-border);
    background: var(--accent-dim);
}

/* ═══════════════════════════════════════════════════════════
   CLOSE SECTION
   ═══════════════════════════════════════════════════════════ */
.persona-close {
    background: #070c14;
    border-top: 1px solid var(--accent-border);
    padding: clamp(48px, 8vw, 80px) 24px;
    text-align: left;
}
.close-inner {
    max-width: 600px;
    margin: 0 auto;
}
.close-inner h2 {
    font-family: var(--sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.close-inner > p {
    font-family: var(--serif);
    font-size: 1rem;
    line-height: 1.7;
    color: #8a9aad;
    margin-bottom: 28px;
}

.close-price { margin-bottom: 28px; }
.price-from {
    display: block;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a6578;
    margin-bottom: 6px;
}
.price-amount {
    font-family: var(--mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.04em;
}
.price-to {
    font-family: var(--mono);
    font-size: 1.5rem;
    font-weight: 500;
    color: #5a6578;
    margin-left: 2px;
}
.price-note {
    font-family: var(--serif);
    font-size: 0.92rem;
    line-height: 1.6;
    color: #8a9aad;
    margin-top: 12px;
    max-width: 440px;
}

/* CTA — solid, monospace */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: #070c14;
    background: var(--accent);
    transition: all 0.2s;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.cta-button:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.35);
}

/* ── FOOTER ─────────────────────────────────────── */
.home-footer, footer.home-footer {
    background: #070c14;
    padding: 2rem;
    text-align: center;
    color: #5a6578;
    font-size: 0.82rem;
    border-top: 1px solid rgba(201,162,78,0.06);
}
.home-footer a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,162,78,0.2);
    transition: border-color 0.2s;
}
.home-footer a:hover { border-color: var(--accent); }
.home-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.footer-copy { color: #5a6578; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .persona-hero { padding: 100px 20px 40px; }
    .persona-hero h1 { font-size: 1.8rem; }
    .persona-subtitle { font-size: 0.95rem; }
    .roadmap-intro h2 { font-size: 1.4rem; }
    .step-row { grid-template-columns: 32px 1fr; gap: 0 14px; }
    .step-number span { width: 26px; height: 26px; font-size: 0.6rem; }
    .step-card { padding: 18px; }
    .step-card h3 { font-size: 1.1rem; }
    .close-inner h2 { font-size: 1.5rem; }
    .price-amount { font-size: 2rem; }
    .price-to { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .persona-hero h1 { font-size: 1.5rem; }
    .step-card { padding: 16px; }
    .step-card h3 { font-size: 1rem; }
    .math-row { font-size: 0.82rem; }
    .math-total .math-val { font-size: 0.9rem; }
    .tool-tag { font-size: 0.55rem; padding: 2px 7px; }
    .close-inner h2 { font-size: 1.3rem; }
}