/* GROW Growth Plan — frontend4 skin (matches css/style.css + css/learn.css design language) */

:root {
    --bg: #f2f2f0;
    --panel: #f6f6f4;
    --ink: #141413;
    --ink-soft: #474744;
    --ink-mute: #8a8a86;
    --line: rgba(17, 17, 16, 0.09);
    --grad: linear-gradient(120deg, #ff1e80 0%, #9c32b0 50%, #6000ff 100%);
    --font-serif: 'Fraunces', 'Tiempos Headline', 'Iowan Old Style', Georgia, serif;
    --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    /* status language — reused site chip colours (see .chip--* in css/learn.css) */
    --card-border: rgba(17, 17, 16, 0.08);
    --card-border-soft: rgba(17, 17, 16, 0.06);
    --card-shadow: 0 1px 2px rgba(17, 17, 16, 0.04), 0 14px 40px -22px rgba(17, 17, 16, 0.3);
    --status-problem: #be123c;
    --status-problem-bg: #fff1f2;
    --status-partly: #b45309;
    --status-partly-bg: #fffbeb;
    --status-strong: #047857;
    --status-strong-bg: #ecfdf5;
    --status-notassessed: #c9ccd6;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-tile: 0 1px 2px rgba(17, 17, 16, 0.04), 0 10px 30px -20px rgba(17, 17, 16, 0.25);
    --shadow-tile-hover: 0 1px 2px rgba(17, 17, 16, 0.05), 0 16px 36px -16px rgba(17, 17, 16, 0.28);
    --shadow-card: 0 1px 2px rgba(17, 17, 16, 0.04), 0 14px 40px -22px rgba(17, 17, 16, 0.3);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; font-optical-sizing: auto; font-variation-settings: 'SOFT' 50; }
.gp-brand-logo { font-family: var(--font-display); }

.gp-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------------- header ---------------- */

.gp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px clamp(16px, 4vw, 40px) 8px;
}

.gp-header { justify-content: flex-end; }
.gp-brand-top { display: flex; justify-content: center; margin: 4px auto 22px; }
.gp-brand-top .gp-brand-logo { height: 34px; width: auto; display: block; overflow: visible; }

.gp-header-pill {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    background: #fff;
    border: 1px solid var(--card-border);
    padding: 7px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---------------- top progress bar ---------------- */

.gp-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(242, 242, 240, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px clamp(16px, 4vw, 40px) 14px;
    border-bottom: 1px solid var(--line);
}
.gp-topbar.gp-hidden { display: none; }

.gp-topbar-row, .gp-progress-track { max-width: 920px; margin-left: auto; margin-right: auto; }
.gp-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.gp-back {
    appearance: none;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink-soft);
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 8px;
}
.gp-back:hover { color: var(--ink); background: rgba(17, 17, 16, 0.05); }
.gp-invisible { visibility: hidden; pointer-events: none; }

.gp-topbar-meta { text-align: right; display: flex; flex-direction: column; gap: 1px; }
.gp-section-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }
.gp-q-label { font-size: 12.5px; color: var(--ink-soft); font-weight: 500; }

.gp-progress-track {
    height: 3px;
    border-radius: 999px;
    background: var(--line);
    overflow: hidden;
}
.gp-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--ink);
    transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ---------------- main / screens ---------------- */

.gp-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(20px, 5vw, 56px) clamp(16px, 4vw, 40px) 40px;
}

.gp-screen { width: 100%; max-width: 920px; }

.gp-fade-in { animation: gpFadeIn 0.28s ease; }
@keyframes gpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gp-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 5vw, 48px);
    box-shadow: var(--shadow-card);
}

/* ---------------- intro ---------------- */

.gp-intro { text-align: center; max-width: 640px; margin: 0 auto; }
.gp-logo { display: none; }
.gp-logo .gp-brand-logo { height: 30px; }

.gp-intro h1 {
    font-size: clamp(30px, 4.6vw, 46px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.06;
    margin: 0 0 14px;
}

.gp-sub {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 16.5px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.gp-bullets {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    font-size: 14.5px;
    color: var(--ink-soft);
    font-weight: 500;
}
.gp-bullets li { position: relative; padding-left: 20px; }
.gp-bullets li::after {
    content: '✓';
    position: absolute; left: 1px; top: 50%;
    transform: translateY(-52%);
    width: 14px; height: 14px;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: var(--ink);
}

.gp-trust {
    margin: 22px 0 0;
    font-size: 13px;
    color: var(--ink-mute);
}

/* ---------------- buttons ---------------- */

.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 999px;
    font: inherit;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(.2,.7,.2,1), box-shadow 0.2s ease, opacity 0.15s ease, background 0.2s ease;
}
.gp-btn-lg { padding: 0 28px; height: 54px; font-size: 16px; }
.gp-btn-primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 10px 30px -12px rgba(17, 17, 16, 0.45);
}
.gp-btn-primary:hover { transform: translateY(-1px); background: #000; box-shadow: 0 16px 40px -14px rgba(17, 17, 16, 0.55); }
.gp-btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.gp-btn-secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--card-border);
    box-shadow: 0 1px 2px rgba(17, 17, 16, 0.04), 0 10px 30px -10px rgba(17, 17, 16, 0.18);
}
.gp-btn-secondary:hover { border-color: rgba(17, 17, 16, 0.18); transform: translateY(-1px); }

.gp-link-btn {
    appearance: none;
    background: none;
    border: none;
    font: inherit;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-mute);
    text-decoration: underline;
    text-decoration-color: rgba(17, 17, 16, 0.3);
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 4px;
}
.gp-link-btn:hover { color: var(--ink); }

/* ---------------- question ---------------- */

.gp-q-text {
    font-size: clamp(22px, 3.2vw, 32px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 8px;
}
.gp-q-help { color: var(--ink-mute); font-size: 14px; margin: 0 0 22px; font-family: var(--font-sans); }
.gp-q-text + .gp-q-help { margin-top: -4px; }
.gp-q-text:last-of-type { margin-bottom: 24px; }

.gp-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
@media (min-width: 620px) {
    .gp-options { grid-template-columns: 1fr 1fr; }
}

.gp-tile {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: var(--radius-md);
    padding: 15px 18px;
    cursor: pointer;
    font: inherit;
    color: var(--ink);
    box-shadow: var(--shadow-tile);
    transition: transform 0.16s cubic-bezier(.2, .7, .2, 1), box-shadow 0.16s ease, border-color 0.16s ease;
}
.gp-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-tile-hover); }
.gp-tile:active { transform: translateY(-1px); }

.gp-tile-num {
    flex: none;
    width: 24px; height: 24px;
    border-radius: 8px;
    background: var(--panel);
    border: 1px solid var(--card-border);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-mute);
    display: flex; align-items: center; justify-content: center;
}
.gp-tile-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.gp-tile-label { font-weight: 500; font-size: 15px; line-height: 1.3; }
.gp-tile-sub { font-size: 13px; color: var(--ink-mute); font-weight: 400; }
.gp-tile-check {
    flex: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(17, 17, 16, 0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: transparent;
    background: transparent;
    transition: all 0.16s ease;
}

.gp-tile-selected {
    border-color: var(--ink);
    box-shadow: var(--shadow-tile-hover);
}
.gp-tile-selected .gp-tile-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.gp-tile-selected .gp-tile-check { background: var(--ink); border-color: var(--ink); color: #fff; }

.gp-continue { width: 100%; margin-top: 24px; }

/* ---------------- email gate ---------------- */

.gp-email-gate h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 400; margin: 0 0 8px; letter-spacing: -0.02em; }

#gp-email-form, #gp-unlock-form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }

.gp-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.gp-field em { font-weight: 400; color: var(--ink-mute); font-style: normal; }
.gp-field input {
    font: inherit;
    font-size: 15.5px;
    font-weight: 400;
    color: var(--ink);
    padding: 13px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--card-border);
    background: var(--panel);
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.gp-field input:focus { border-color: var(--ink); background: #fff; }

.gp-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.gp-gdpr { font-size: 12.5px; color: var(--ink-mute); line-height: 1.5; margin: 2px 0 6px; }

.gp-building { text-align: center; padding: 30px 0 6px; }
.gp-spinner {
    width: 40px; height: 40px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 3px solid var(--line);
    border-top-color: var(--ink);
    animation: gpSpin 0.8s linear infinite;
}
@keyframes gpSpin { to { transform: rotate(360deg); } }
.gp-building p { font-size: 15px; font-weight: 500; color: var(--ink-soft); margin: 0; }
.gp-hidden { display: none !important; }

/* ---------------- results ---------------- */

.gp-results-header h1 { font-size: clamp(26px, 3.8vw, 36px); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 6px; }

/* hero */
.gp-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.gp-hero-copy { flex: 1 1 260px; min-width: 0; }
@media (min-width: 700px) { .gp-hero { flex-wrap: nowrap; } }
.gp-hero-copy h1 { font-size: clamp(26px, 3.6vw, 36px); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 8px; line-height: 1.12; }
.gp-hero-copy .gp-sub { margin: 0 0 4px; }
.gp-hero-copy .gp-sub-goals { color: var(--ink-mute); font-size: 14.5px; }
.gp-hero-score {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.gp-hero-score {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    padding: 16px 16px 14px;
    min-width: 240px;
}
.gp-ring-wrap-sm { width: 120px; height: 120px; }
.gp-meter { width: 100%; margin-top: 12px; display: grid; gap: 6px; }
.gp-meter-row { display: grid; grid-template-columns: 1fr 88px 26px; align-items: center; gap: 8px; font-size: 11.5px; }
.gp-meter-label { color: var(--ink-soft); text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gp-meter-track { height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; }
.gp-meter-fill { display: block; height: 100%; border-radius: 999px; background: var(--ink); }
.gp-meter-fill.gp-meter-problem { background: var(--status-problem); }
.gp-meter-fill.gp-meter-partly { background: var(--status-partly); }
.gp-meter-fill.gp-meter-strong { background: var(--status-strong); }
.gp-meter-val { font-family: var(--font-mono); font-weight: 500; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .gp-hero-score { width: 100%; } }
.gp-ring-wrap-sm .gp-ring { width: 100%; height: 100%; }
.gp-ring-wrap-sm .gp-ring-num { font-size: 24px; }
.gp-hero-score .gp-score-title { margin-top: 6px; }
.gp-hero-score .gp-score-verdict { font-size: 16px; }

/* pillar USP scorecard */
.gp-usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 28px 0;
}
@media (min-width: 640px) {
    .gp-usp-grid { grid-template-columns: 1fr 1fr; }
}
.gp-usp-card {
    position: relative;
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.gp-status-pill {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 999px;
}
.gp-status-problem { color: var(--status-problem); background: var(--status-problem-bg); }
.gp-status-partly { color: var(--status-partly); background: var(--status-partly-bg); }
.gp-status-strong { color: var(--status-strong); background: var(--status-strong-bg); }
.gp-usp-title { font-size: 16.5px; font-weight: 600; margin: 2px 0 0; letter-spacing: -0.01em; }
.gp-usp-said, .gp-usp-does { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; font-weight: 300; }
.gp-usp-said strong, .gp-usp-does strong { color: var(--ink); font-weight: 600; }

/* "what GROW can do for you" panel */
.gp-outcomes-panel {
    position: relative;
    border-radius: var(--radius-md);
    padding: 26px 26px 22px;
    margin: 30px 0;
    background: #fff;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}
.gp-outcomes-panel h3 { font-size: 20px; font-weight: 400; margin: 0 0 14px; letter-spacing: -0.015em; }
.gp-outcomes-panel ul { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gp-outcomes-panel li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.5;
}
.gp-outcomes-panel li::before {
    content: '';
    position: absolute; left: 0; top: 3px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--ink);
}
.gp-outcomes-panel li::after {
    content: '✓';
    position: absolute; left: 2px; top: 3px;
    width: 16px; height: 16px;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
.gp-outcomes-panel .gp-cta-block { margin: 0; }

/* importance dots (1-5) */
.gp-imp-dots { display: inline-flex; align-items: center; gap: 3px; }
.gp-imp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); display: inline-block; }
.gp-imp-dot-filled { background: var(--ink); }

/* dark-header report card, findings rows, expanded detail rows + sub-point
 * boxes. White cards, 1px light-neutral borders, soft shadow — no gradient
 * fills. Typography: serif h3, Inter body, mono meta. */

.gp-detail-back { margin-bottom: 18px; padding-left: 0; }

.gp-status-pill { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.02em; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
/* score chip: mono "32 / 100" */
.gp-score-chip {
    font-variant-numeric: tabular-nums;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 3px 8px;
}

/* summary page layout */
.gp-summary-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "head" "side" "main";
    gap: 20px 28px;
}
.gp-summary-head { grid-area: head; }
.gp-summary-main { grid-area: main; min-width: 0; }
.gp-summary-side { grid-area: side; }
@media (min-width: 900px) {
    .gp-summary-layout {
        grid-template-columns: 1fr 260px;
        grid-template-areas: "head side" "main side";
        align-items: start;
        gap: 8px 28px;
    }
    .gp-summary-side { width: 280px; }
}
.gp-summary-side .gp-meter-row { grid-template-columns: 1fr 74px 26px; }
.gp-summary-side .gp-meter-label { white-space: normal; overflow: visible; text-overflow: clip; font-size: 11px; line-height: 1.3; }
.gp-results .gp-card-meta { display: none; }
.gp-view-detail-row { margin-top: 28px; }

/* ---- report card: dark header bar, meta grid, divider, growth-score row ---- */
.gp-report-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    margin: 0 0 24px;
}
.gp-report-darkbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--ink);
    padding: 18px 24px;
}
.gp-report-darkbar-brand { display: flex; align-items: center; gap: 10px; }
.gp-report-darkbar-brand .gp-brand-logo { height: 18px; width: auto; display: block; }
.gp-report-darkbar-brand span { font-size: 14px; font-weight: 500; color: #fff; }
.gp-report-darkbar-date { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255, 255, 255, 0.6); white-space: nowrap; }

.gp-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 24px;
    padding: 22px 24px;
}
@media (min-width: 480px) { .gp-meta-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .gp-meta-grid { grid-template-columns: 1fr 1fr 1fr; } }
.gp-meta-cell { display: flex; flex-direction: column; gap: 3px; padding: 10px 0; min-width: 0; }
.gp-meta-label { font-family: var(--font-mono); font-size: 11px; text-transform: none; letter-spacing: .01em; color: var(--ink-mute); }
.gp-meta-value { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.4; overflow-wrap: anywhere; }

.gp-report-divider { height: 0; border-top: 1px dashed var(--card-border); margin: 0 24px; }

.gp-growthscore-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 24px;
}
.gp-growthscore-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); flex: none; }
.gp-growthscore-track { position: relative; flex: 1 1 160px; min-width: 120px; height: 8px; border-radius: 999px; background: var(--panel); overflow: visible; }
.gp-growthscore-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 999px; background: var(--ink); }
.gp-growthscore-gap { position: absolute; top: 0; bottom: 0; border-radius: 999px; background: var(--ink); opacity: 0.3; }
.gp-growthscore-marker { position: absolute; top: 50%; width: 4px; height: 18px; border-radius: 2px; background: var(--ink); transform: translate(-50%, -50%); box-shadow: 0 0 0 2px #fff; }
.gp-growthscore-nums { flex: none; font-variant-numeric: tabular-nums; font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.gp-growthscore-nums strong { color: var(--ink); font-weight: 600; }

/* ---- findings block (summary, inside the report card) ---- */
.gp-findings-block { padding: 22px 24px 4px; }
.gp-findings-block h3 { font-size: 19px; font-weight: 400; margin: 0 0 8px; letter-spacing: -0.01em; }
.gp-findings-block p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; font-weight: 300; }

.gp-finding-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px dashed var(--card-border);
    cursor: pointer;
    transition: background 0.15s ease;
}
.gp-finding-row:hover { background: rgba(17, 17, 16, 0.025); }
.gp-finding-num {
    flex: none;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    display: flex; align-items: center; justify-content: center;
}
.gp-finding-title { flex: 1; min-width: 0; font-size: 16px; font-weight: 500; color: var(--ink); }

.gp-working-mini { padding: 14px 24px 22px; border-top: 1px dashed var(--card-border); }
.gp-working-mini-label { font-family: var(--font-mono); font-size: 11px; text-transform: none; letter-spacing: .01em; color: var(--ink-mute); margin: 0 0 10px; }
.gp-working-mini ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.gp-working-mini li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-mute); }
.gp-working-check { flex: none; color: var(--status-strong); font-weight: 600; }

/* summary buttons row */
.gp-summary-buttons-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 0 0 32px; }
.gp-summary-buttons-row .gp-btn { flex: 0 1 auto; }
@media (max-width: 480px) { .gp-summary-buttons-row { flex-direction: column; } .gp-summary-buttons-row .gp-btn { flex: 1 1 auto; } }

/* ---- detail: inline meter (wheel + bars inside the report card) ---- */
.gp-meter-inline { display: flex; flex-direction: column; gap: 20px; padding: 22px 24px 26px; }
.gp-meter-inline-wheel { display: flex; flex-direction: column; align-items: center; text-align: center; flex: none; }
.gp-meter-inline-bars { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 640px) {
    .gp-meter-inline { flex-direction: row; align-items: center; gap: 32px; }
    .gp-meter-inline-wheel { width: 180px; }
}

/* ---- detail: expanded finding rows ---- */
.gp-expanded-row {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 24px;
    margin-bottom: 18px;
}
.gp-expanded-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.gp-finding-num-lg { width: 30px; height: 30px; font-size: 12.5px; }
.gp-expanded-title { flex: 1 1 auto; min-width: 160px; font-size: 20px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); margin: 0; font-family: var(--font-serif); font-variation-settings: 'SOFT' 50; }
.gp-expanded-meaning { font-size: 13.5px; color: var(--ink-mute); line-height: 1.6; margin: 0 0 10px; max-width: 62ch; font-weight: 300; }
.gp-expanded-fix { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 20px; font-weight: 300; }
.gp-expanded-fix strong { color: var(--ink); font-weight: 600; }
.gp-expanded-how-label { font-family: var(--font-mono); font-size: 11.5px; text-transform: none; letter-spacing: .01em; color: var(--ink-mute); margin: 0 0 12px; }

/* collapsed "working well" row (detail) */
.gp-working-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--panel);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 14px;
    color: var(--ink-mute);
}
.gp-working-label { font-size: 14.5px; font-weight: 500; }

.gp-subbox-grid { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
@media (min-width: 760px) {
    .gp-subbox-grid { grid-template-columns: 1fr 1fr; }
}
.gp-subbox {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px;
}
.gp-subbox-title { font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.gp-subbox-desc { font-size: 14px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.gp-box-bullets { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.gp-box-bullets li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; padding-left: 14px; position: relative; font-weight: 300; }
.gp-box-bullets li::before { content: '–'; position: absolute; left: 0; color: var(--ink-mute); }
.gp-subbox-divider { height: 1px; background: var(--card-border-soft); margin-top: auto; }
.gp-subbox-outcome { font-size: 13.5px; line-height: 1.55; color: var(--status-strong); }
.gp-outcome-label { font-weight: 600; margin-right: 4px; }
.gp-subbox-fallback { color: var(--ink-mute); }
.gp-subbox-fallback .gp-subbox-title { color: var(--ink-mute); font-weight: 600; }

.gp-leadgen-playbook { background: var(--panel); border-radius: var(--radius-md); padding: 22px 24px; margin: 26px 0; }
.gp-leadgen-playbook h3 { font-size: 17px; font-weight: 400; margin: 0 0 12px; }
.gp-leadgen-playbook ul { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.gp-leadgen-playbook li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; padding-left: 16px; position: relative; font-weight: 300; }
.gp-leadgen-playbook li::before { content: '–'; position: absolute; left: 0; color: var(--ink-mute); }

/* segmented toggle */
.gp-toggle { margin: 30px 0; }
.gp-segmented {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--panel);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 22px;
}
.gp-seg-highlight {
    position: absolute;
    top: 4px; left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(17, 17, 16, 0.10);
    transition: transform 0.28s cubic-bezier(.2, .7, .2, 1);
}
.gp-segmented[data-active="diy"] .gp-seg-highlight { transform: translateX(100%); }
.gp-seg-btn {
    position: relative;
    z-index: 1;
    appearance: none;
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    font-size: 14px;
    color: var(--ink-mute);
    padding: 11px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: center;
}
.gp-seg-btn-active { color: var(--ink); font-weight: 600; }
.gp-toggle-panel.gp-hidden { display: none; }
.gp-timeline-caption { text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--ink-mute); text-transform: none; letter-spacing: .01em; margin: 18px 0 0; }

/* no-ads start-right checklist */
.gp-checklist { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gp-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
}
.gp-check-icon {
    flex: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 600;
}
.gp-check-done .gp-check-icon { background: var(--status-strong-bg); color: var(--status-strong); }
.gp-check-missing .gp-check-icon { background: var(--status-problem-bg); color: var(--status-problem); }
.gp-check-todo .gp-check-icon { background: var(--panel); color: var(--ink-mute); }
.gp-check-item span:nth-child(2) { flex: 1; }
.gp-check-tag {
    flex: none;
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-mute);
    background: var(--panel);
    padding: 3px 9px;
    border-radius: 999px;
}

/* non-ecom exit card */
.gp-exit-card h1 { font-size: clamp(26px, 3.6vw, 34px); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 8px; }
.gp-exit-pointers { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 20px; }
.gp-exit-pointer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    text-decoration: none;
    color: var(--ink);
    font: inherit;
    border: none;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.gp-exit-pointer:hover { transform: translateY(-2px); box-shadow: var(--shadow-tile-hover); background: #fff; }
.gp-exit-pointer-title { font-weight: 600; font-size: 15px; }
.gp-exit-pointer-sub { font-size: 13px; color: var(--ink-mute); }

.gp-score-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 32px;
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}
.gp-checklist-card { background: var(--panel); border-radius: var(--radius-md); padding: 24px; margin: 24px 0; }

.gp-ring-wrap { position: relative; flex: none; width: 160px; height: 160px; }
.gp-ring { transform: rotate(-90deg); }
.gp-ring-track { fill: none; stroke: var(--line); stroke-width: 12; }
.gp-ring-fill { fill: none; stroke: var(--ink); stroke-width: 12; stroke-linecap: round; transition: stroke-dashoffset 1.1s cubic-bezier(.2, .7, .2, 1); }
.gp-ring-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.gp-ring-num { font-family: var(--font-serif); font-variation-settings: 'SOFT' 50; font-size: 36px; font-weight: 400; letter-spacing: -0.02em; }
.gp-ring-den { font-size: 13px; color: var(--ink-mute); font-weight: 500; margin-top: -2px; }

.gp-score-meta { flex: 1; min-width: 160px; }
.gp-score-title { font-family: var(--font-mono); font-size: 12px; text-transform: none; letter-spacing: .01em; color: var(--ink-mute); margin: 0 0 4px; }
.gp-score-verdict { font-size: 22px; font-weight: 600; margin: 0; color: var(--ink); }

.gp-pillar-bars { width: 100%; display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.gp-pillar-row { display: flex; flex-direction: column; gap: 6px; }
.gp-pillar-label { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 500; }
.gp-pillar-strength { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 999px; text-transform: none; letter-spacing: .03em; }
.gp-strength-strong { color: var(--status-strong); background: var(--status-strong-bg); }
.gp-strength-ok { color: var(--status-partly); background: var(--status-partly-bg); }
.gp-strength-weak { color: var(--status-problem); background: var(--status-problem-bg); }
.gp-pillar-track { height: 6px; border-radius: 999px; background: #fff; overflow: hidden; }
.gp-pillar-fill { height: 100%; border-radius: 999px; background: var(--ink); transition: width 0.9s cubic-bezier(.2, .7, .2, 1); }

.gp-insights { margin: 26px 0; }
.gp-insights h3 { font-size: 18px; font-weight: 400; margin: 0 0 10px; }
.gp-insights ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.gp-insights li { color: var(--ink-soft); font-size: 15px; line-height: 1.55; font-weight: 300; }

.gp-plan-note {
    font-size: 13.5px;
    color: var(--ink-soft);
    background: var(--panel);
    border-left: 3px solid var(--ink);
    padding: 12px 16px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    font-weight: 400;
}

/* timeline */
.gp-timeline { margin: 30px 0 8px; position: relative; }
.gp-stage { display: flex; gap: 18px; position: relative; }
.gp-stage:not(:last-child) { padding-bottom: 30px; }
.gp-stage-marker {
    flex: none;
    width: 16px;
    position: relative;
    display: flex;
    justify-content: center;
}
.gp-stage-marker::before {
    content: '';
    position: absolute;
    top: 20px; bottom: -30px;
    width: 2px;
    background: var(--ink);
    opacity: 0.15;
}
.gp-stage:last-child .gp-stage-marker::before { display: none; }
.gp-stage-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--line);
    margin-top: 4px;
    flex: none;
}
.gp-stage-body { flex: 1; min-width: 0; }
.gp-stage-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 12px; margin-bottom: 12px; }
.gp-stage-label { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.gp-stage-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-mute);
    background: var(--panel);
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.gp-steps { display: flex; flex-direction: column; gap: 12px; }
.gp-step {
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.gp-step:hover { transform: translateY(-2px); box-shadow: var(--shadow-tile-hover); }
.gp-step-title { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.gp-step-why { font-size: 14px; color: var(--ink-soft); margin: 0 0 6px; line-height: 1.55; font-weight: 300; }
.gp-step-how { font-size: 12.5px; color: var(--ink-mute); font-style: italic; margin: 0; }
.gp-step-how em { font-style: italic; font-weight: 600; color: var(--ink); }

.gp-cta-block {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 20px;
}
.gp-cta-block .gp-btn { flex: 1 1 220px; }

.gp-results-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.gp-sent-pill {
    font-size: 13px;
    font-weight: 600;
    color: var(--status-strong);
    background: var(--status-strong-bg);
    padding: 6px 12px;
    border-radius: 999px;
}

/* ---------------- footer ---------------- */

.gp-footer {
    text-align: center;
    padding: 18px 20px 30px;
    font-size: 12.5px;
    color: var(--ink-mute);
}
.gp-footer a { color: var(--ink-mute); text-decoration: underline; cursor: pointer; }
.gp-footer a:hover { color: var(--ink); }

/* ---------------- resume banner ---------------- */

.gp-resume-banner {
    max-width: 760px;
    margin: 0 auto 14px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}
.gp-resume-banner strong { font-weight: 600; }
.gp-resume-actions { display: flex; gap: 10px; }

/* ---------------- responsive tweaks ---------------- */

@media (max-width: 480px) {
    .gp-header { padding: 16px 16px 4px; }
    .gp-header-pill { font-size: 11px; padding: 6px 10px; }
    .gp-card { border-radius: var(--radius-md); padding: 22px 18px; }
    .gp-cta-block { flex-direction: column; }
    .gp-cta-block .gp-btn { flex: 1 1 auto; }
    .gp-score-card { padding: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------- private-plan unlock gate ---------------- */

.gp-unlock-error {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--status-problem);
    background: var(--status-problem-bg);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 4px 0 0;
}
.gp-unlock-note {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--status-strong);
    background: var(--status-strong-bg);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 4px 0 0;
}
.gp-plan-pill {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--line);
    padding: 6px 12px;
    border-radius: 999px;
}
.gp-plan-link-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 0;
}
.gp-plan-link-row input {
    flex: 1 1 220px;
    min-width: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-mute);
    background: var(--panel);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 7px 10px;
}
.gp-unlock-form .gp-field input[inputmode="numeric"] {
    letter-spacing: 0.35em;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

/* ---- detail header + callout ---- */
.gp-detail-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; margin: 14px 0 28px; flex-wrap: wrap; }
@media (min-width: 700px) { .gp-detail-head { flex-wrap: nowrap; } }
.gp-detail-head-copy { flex: 1 1 260px; min-width: 0; }
.gp-detail-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); margin: 0 0 6px; }
.gp-detail-head h1 { font-size: clamp(24px, 3vw, 32px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 18px; }
.gp-detail-facts { margin: 0; display: grid; gap: 10px; }
.gp-detail-fact { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: baseline; padding-bottom: 10px; border-bottom: 1px solid var(--card-border-soft); }
.gp-detail-fact:last-child { border-bottom: none; }
.gp-detail-fact dt { font-family: var(--font-mono); font-size: 11px; text-transform: none; letter-spacing: .01em; color: var(--ink-mute); margin: 0; }
.gp-detail-fact dd { margin: 0; font-size: 14.5px; color: var(--ink); line-height: 1.5; overflow-wrap: anywhere; }
.gp-detail-callout { border: 1px solid var(--card-border); border-radius: 18px; padding: 24px 26px; margin: 0 0 32px; background: #fff; box-shadow: var(--card-shadow); }
.gp-detail-callout-head { margin: 0 0 8px; font-size: 17px; line-height: 1.45; color: var(--ink); font-weight: 400; }
.gp-detail-callout-head strong { font-weight: 600; }
.gp-detail-callout-text { margin: 0 0 18px; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); font-weight: 300; }
.gp-detail-callout-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gp-btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--card-border); }
.gp-btn-ghost:hover { border-color: rgba(17, 17, 16, 0.2); }
.gp-detail-callout-actions .gp-btn { padding: 0 20px; height: 48px; font-size: 14.5px; }

/* ---- intro/question polish: hairline top accent, wider card, no jump ---- */
.gp-card { position: relative; overflow: hidden; }
.gp-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--grad); }
.gp-question { min-height: 420px; }
.gp-main { padding-top: 12px !important; }
.gp-brand-top { margin: 18px auto 18px !important; }
.gp-intro { max-width: none; }

/* ---- in-card progress + meta row ---- */
.gp-card-progress::before { background: var(--line) !important; }
.gp-card-progress::after { content: ''; position: absolute; left: 0; top: 0; height: 2px; width: var(--gp-progress, 0%); background: var(--ink); transition: width .35s cubic-bezier(.4,0,.2,1); }
.gp-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: -6px 0 18px; min-height: 28px; }
.gp-card-meta .gp-back { margin-left: -6px; }
.gp-card-meta .gp-topbar-meta { text-align: right; display: flex; flex-direction: row; align-items: baseline; gap: 10px; }
.gp-card-meta .gp-section-label { font-size: 11px; }
.gp-card-meta .gp-q-label { font-size: 12.5px; font-weight: 500; color: var(--ink-mute); }
.gp-results .gp-card-meta { margin-bottom: 8px; }

/* consistent card width on every screen */
.gp-card { width: 100%; max-width: none; box-sizing: border-box; }
.gp-intro, .gp-email-gate, .gp-results, .gp-exit-card { max-width: none !important; margin-left: 0 !important; margin-right: 0 !important; }
@media (max-width: 640px) { .gp-main { padding-left: 12px !important; padding-right: 12px !important; } .gp-card { padding: 22px 18px; border-radius: 18px; } .gp-question { min-height: 0; } }

.gp-gdpr-outside { text-align: center; margin: 16px auto 0; max-width: 560px; font-size: 12.5px; color: var(--ink-mute); line-height: 1.55; }

.gp-field-invalid input { border-color: var(--status-problem) !important; box-shadow: 0 0 0 3px rgba(190, 18, 60, .12); }
.gp-field-error { display: block; margin-top: 6px; font-size: 12.5px; color: var(--status-problem); font-weight: 400; }

/* ---- h1 + title used at the top of both the summary and detail screens ---- */
.gp-results h1 { font-size: clamp(26px, 3.8vw, 36px); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 6px; }

.gp-summary-layout { grid-template-columns: 1fr !important; grid-template-areas: "head" "main" !important; }

.gp-report-darkbar-brand { display: flex; align-items: center; gap: 10px; }
.gp-darkbar-logo { height: 20px; width: auto; display: block; overflow: visible; }
.gp-darkbar-sep { color: rgba(255, 255, 255, 0.35); }
.gp-report-darkbar-brand .gp-brand-logo { display: none; }

/* subtle grey value panel */
.gp-value-panel { background: var(--panel); border: 1px solid var(--card-border); border-radius: 16px; padding: 24px 26px 22px; margin: 30px 0 10px; }
.gp-value-panel h3 { font-size: 18px; font-weight: 400; margin: 0 0 12px; color: var(--ink); }
.gp-value-panel ul { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.gp-value-panel li { position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.55; color: var(--ink); font-weight: 300; }
.gp-value-panel li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 999px; background: var(--ink); }
.gp-value-note { margin: 0 0 18px; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.gp-value-panel .gp-cta-row, .gp-value-panel .gp-cta { margin-top: 0; }

.gp-cta-subtle { justify-content: flex-start; }
.gp-cta-subtle .gp-btn-ghost { padding: 0 18px; height: 46px; font-size: 14px; font-weight: 500; background: #fff; border: 1px solid var(--card-border); color: var(--ink); }
.gp-cta-subtle .gp-btn-ghost:hover { border-color: rgba(17, 17, 16, 0.2); }

.gp-getting-started { margin-bottom: 0; }
.gp-steps-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 10px 24px; }
@media (min-width: 640px) { .gp-steps-list { grid-template-columns: 1fr 1fr; } }
.gp-steps-list li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink); line-height: 1.45; font-weight: 400; }
.gp-step-num { flex: none; width: 26px; height: 26px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; }

.gp-getting-started { border-top: 1px solid var(--card-border); padding-top: 18px; margin: 18px 0 18px; }
.gp-getting-started h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: .01em; text-transform: none; font-weight: 500; margin: 0 0 12px; color: var(--ink-mute); }
.gp-value-panel .gp-steps-list li { padding-left: 0; }
.gp-value-panel .gp-steps-list li::before { display: none; }

.gp-mentor-note { margin: 18px 24px 4px; padding: 14px 16px; background: var(--panel); border: 1px solid var(--card-border); border-radius: 12px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); font-weight: 300; }

.gp-grow-intro { background: var(--panel); border: 1px solid var(--card-border); border-radius: 16px; padding: 22px 24px; margin: 0 0 22px; }
.gp-grow-intro h3 { font-size: 18px; font-weight: 400; margin: 0 0 8px; }
.gp-grow-intro p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--ink); font-weight: 300; }
.gp-grow-intro-sub { margin-top: 8px !important; color: var(--ink-mute) !important; font-size: 13px !important; }

.gp-grow-list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gp-grow-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; color: var(--ink); font-weight: 300; }
.gp-grow-list li strong { font-weight: 600; }
.gp-grow-check { flex: none; width: 20px; height: 20px; border-radius: 999px; background: var(--status-strong-bg); color: var(--status-strong); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }

.gp-callout-outcome { background: var(--status-strong-bg); border-radius: 12px; padding: 14px 16px; margin: 0 0 18px; }
.gp-callout-outcome-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .01em; text-transform: none; color: var(--status-strong); margin-bottom: 4px; }
.gp-callout-outcome p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink); font-weight: 300; }

/* ---------------- "Message your mentor" modal ---------------- */

.gp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-color: rgba(17, 17, 16, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gp-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 28px 26px 24px;
}
.gp-modal h3 { margin: 0 0 6px; font-size: 21px; font-weight: 400; letter-spacing: -0.015em; color: var(--ink); }
.gp-modal-sub { margin: 0 0 18px; font-size: 13.5px; color: var(--ink-mute); }
.gp-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--ink-mute);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    border-radius: 999px;
}
.gp-modal-close:hover { background: var(--panel); color: var(--ink); }
.gp-modal .gp-field input[readonly] { background: var(--panel); color: var(--ink-mute); cursor: not-allowed; }
.gp-modal .gp-field textarea {
    font: inherit;
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid var(--card-border);
    background: var(--panel);
    outline: none;
    resize: vertical;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.gp-modal .gp-field textarea:focus { border-color: var(--ink); background: #fff; }
#gp-mentor-form { display: flex; flex-direction: column; gap: 14px; }
#gp-mentor-fields { display: flex; flex-direction: column; gap: 14px; }
#gp-mentor-form .gp-btn { width: 100%; }
.gp-mentor-sent {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--status-strong);
    background: var(--status-strong-bg);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0;
}
#gp-unlock-form .gp-btn { width: 100%; margin-top: 4px; }
#gp-unlock-msg:empty { display: none; }

.gp-eyebrow { display: inline-block; margin: 0 0 12px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .01em; text-transform: none; color: var(--ink-mute); }

.gp-fail-pill { display: inline-block; background: var(--status-problem-bg); color: var(--status-problem); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 500; }
.gp-saving-pill { display: inline-block; background: var(--panel); color: var(--ink-mute); border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 500; }
.gp-cta-center { justify-content: center; margin-top: 24px; }

.gp-intro-steps { list-style: none; margin: 22px auto 26px; padding: 0; max-width: 560px; display: grid; gap: 12px; text-align: left; }
.gp-intro-steps li { display: flex; align-items: flex-start; gap: 14px; background: var(--panel); border: 1px solid var(--card-border); border-radius: 14px; padding: 14px 16px; }
.gp-intro-step-num { flex: none; width: 28px; height: 28px; border-radius: 999px; background: var(--ink); color: #fff; font-family: var(--font-mono); font-weight: 500; font-size: 12.5px; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.gp-intro-steps strong { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.gp-intro-steps span:not(.gp-intro-step-num) { display: block; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; font-weight: 300; }

.gp-card-meta .gp-section-label { text-transform: none; letter-spacing: 0; font-size: 12.5px; font-weight: 500; color: var(--ink-mute); }
/* results/detail: no outer white container — the report card itself carries the white */
.gp-card.gp-results { background: transparent; box-shadow: none; border: 0; padding-left: 0; padding-right: 0; overflow: visible; max-width: 1040px; }
.gp-card.gp-results::before, .gp-card.gp-results::after { display: none; }
.gp-card.gp-results .gp-report-card { background: #fff; border-radius: 22px; box-shadow: 0 1px 2px rgba(17,17,16,.04), 0 14px 40px -22px rgba(17,17,16,.3); }
.gp-restart { text-align: center; margin: 0 0 clamp(24px, 4vw, 40px); font-size: 13px; }
.gp-restart a { color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.gp-restart a:hover { color: var(--ink); }
