/* Prodify landing mockup v2 — V1 system with role-focused narrative */

:root {
    --lv1-paper: #fbfaf6;
    --lv1-white: #ffffff;
    --lv1-ink: #173342;
    --lv1-body: #526b76;
    --lv1-muted: #71858d;
    --lv1-rule: #d8e4e1;
    --lv1-rule-strong: #b9cfca;
    --lv1-green: #19ac86;
    --lv1-green-dark: #148f6f;
    --lv1-green-pale: #e6f5f0;
    --lv1-blue: #315e80;
    --lv1-blue-pale: #e9f0f5;
    --lv1-teal: #029bb5;
    --lv1-teal-pale: #e4f4f6;
    --lv1-amber: #e5a84b;
    --lv1-shadow: 0 20px 60px rgba(23, 51, 66, 0.09);
    --lv1-max: 1180px;
}

html { scroll-behavior: smooth; }

body.entry-funnel.landing-v1 {
    margin: 0;
    background: var(--lv1-paper);
    color: var(--lv1-ink);
    font-family: 'Comfortaa', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

.landing-v1 *, .landing-v1 *::before, .landing-v1 *::after { box-sizing: border-box; }

.landing-v1 a { color: inherit; }

.landing-v1 a:focus-visible,
.landing-v1 button:focus-visible {
    outline: 3px solid rgba(2, 155, 181, 0.35);
    outline-offset: 4px;
}

.lv1-shell {
    width: min(calc(100% - 48px), var(--lv1-max));
    margin-inline: auto;
}

.lv1-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.lv1-logo {
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.lv1-logo-main { color: var(--lv1-blue); }
.lv1-logo-space { color: var(--lv1-green); }

.lv1-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.77rem;
    font-weight: 600;
}

.lv1-nav a {
    color: var(--lv1-body);
    text-decoration: none;
}

.lv1-nav a:hover { color: var(--lv1-ink); }

.lv1-nav .lv1-login {
    padding: 0.62rem 0.9rem;
    background: var(--lv1-white);
    color: var(--lv1-ink);
    border: 1px solid var(--lv1-rule-strong);
    border-radius: 9px;
}

.lv1-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--lv1-rule);
    background:
        radial-gradient(circle at 76% 42%, rgba(25, 172, 134, 0.08), transparent 29%),
        var(--lv1-paper);
}

.role-mentor .lv1-hero {
    background: radial-gradient(circle at 76% 42%, rgba(49, 94, 128, 0.11), transparent 29%), var(--lv1-paper);
}

.role-admin .lv1-hero {
    background: radial-gradient(circle at 76% 42%, rgba(2, 155, 181, 0.09), transparent 29%), var(--lv1-paper);
}

.lv1-hero::after {
    content: "";
    position: absolute;
    width: 640px;
    height: 640px;
    right: -110px;
    top: -115px;
    border: 1px solid rgba(23, 51, 66, 0.07);
    border-radius: 48% 52% 46% 54%;
    pointer-events: none;
}

.lv1-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: 36px;
}

.lv1-hero-copy { padding: 76px 0; }

.lv1-eyebrow,
.lv1-section-kicker {
    margin: 0 0 16px;
    color: var(--lv1-green-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.role-mentor .lv1-eyebrow,
.role-mentor .lv1-section-kicker { color: var(--lv1-blue); }
.role-admin .lv1-eyebrow,
.role-admin .lv1-section-kicker { color: #047f92; }

.lv1-title {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(2.4rem, 4.2vw, 3.65rem);
    line-height: 1.06;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.lv1-title-emphasis {
    display: inline;
    color: var(--lv1-green);
}

.role-mentor .lv1-title-emphasis { color: var(--lv1-blue); }
.role-admin .lv1-title-emphasis { color: var(--lv1-teal); }

.lv1-lede {
    max-width: 630px;
    margin: 0 0 30px;
    color: var(--lv1-body);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.03rem;
    line-height: 1.72;
}

.lv1-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.lv1-action-primary,
.lv1-action-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lv1-action-primary {
    background: var(--lv1-green);
    color: #fff;
    box-shadow: 0 10px 26px rgba(25, 172, 134, 0.17);
}

.role-mentor .lv1-action-primary { background: var(--lv1-blue); box-shadow: 0 10px 26px rgba(49, 94, 128, 0.17); }
.role-admin .lv1-action-primary { background: var(--lv1-teal); box-shadow: 0 10px 26px rgba(2, 155, 181, 0.17); }

.lv1-action-secondary {
    border: 1px solid var(--lv1-rule-strong);
    background: var(--lv1-white);
    color: var(--lv1-ink);
}

.lv1-action-primary:hover,
.lv1-action-secondary:hover { transform: translateY(-2px); }

.lv1-hero-note {
    margin: 16px 0 0;
    color: var(--lv1-muted);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.72rem;
}

/* Diagram foundation */
.lv1-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1.3 / 1;
    min-height: 400px;
    overflow: hidden;
}

.lv1-visual-label {
    position: absolute;
    left: 8%;
    top: 11%;
    margin: 0;
    color: var(--lv1-muted);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lv1-orbit {
    position: absolute;
    border: 1px solid var(--lv1-rule-strong);
    border-radius: 50%;
    pointer-events: none;
}

.lv1-orbit-one { inset: 18% 7% 18% 7%; transform: rotate(-9deg); }
.lv1-orbit-two { inset: 27% 19% 25% 19%; border-style: dashed; transform: rotate(14deg); opacity: 0.78; }

.lv1-core {
    position: absolute;
    left: 50%;
    top: 49%;
    width: 126px;
    height: 126px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--lv1-ink);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 42px rgba(23, 51, 66, 0.17);
}

.lv1-core span {
    display: block;
    margin-bottom: 6px;
    color: #a9c2ca;
    font-family: Inter, sans-serif;
    font-size: 0.53rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lv1-core strong { display: block; max-width: 88px; font-size: 0.83rem; line-height: 1.35; }

.lv1-node {
    position: absolute;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 7px solid var(--lv1-paper);
    border-radius: 50%;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 0 0 1px var(--lv1-rule);
}

.lv1-node::after {
    content: attr(data-label);
    position: absolute;
    width: max-content;
    max-width: 120px;
    color: var(--lv1-ink);
    font-family: Inter, sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
}

.lv1-node small {
    position: absolute;
    width: max-content;
    max-width: 130px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.54rem;
    font-weight: 400;
}

.lv1-node-admin { left: 8%; top: 25%; background: var(--lv1-teal); }
.lv1-node-admin::after { left: -2px; top: -25px; }
.lv1-node-admin small { left: -2px; top: -12px; }
.lv1-node-practitioner { left: 13%; bottom: 20%; background: var(--lv1-green); }
.lv1-node-practitioner::after { left: -3px; top: 50px; }
.lv1-node-practitioner small { left: -3px; top: 64px; }
.lv1-node-mentor { right: 7%; top: 31%; background: var(--lv1-blue); }
.lv1-node-mentor::after { right: -1px; top: -25px; }
.lv1-node-mentor small { right: -1px; top: -12px; text-align: right; }
.lv1-node-peer { right: 24%; bottom: 13%; background: var(--lv1-amber); }
.lv1-node-peer::after { left: 0; top: 51px; }
.lv1-node-peer small { left: 0; top: 65px; }

.lv1-return-note {
    position: absolute;
    right: 7%;
    bottom: 8%;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.56rem;
}

/* Entry sample — community-driven learning as a shared learning field */
.lv1-commons { min-height: 470px; }

.lv1-commons .lv1-visual-label {
    left: 5%;
    top: 6%;
}

.lv1-commons-field {
    position: absolute;
    inset: 14% 3% 10%;
    overflow: hidden;
    border: 1px solid var(--lv1-rule-strong);
    border-radius: 47% 53% 49% 51% / 52% 47% 53% 48%;
    background:
        radial-gradient(circle at 50% 50%, rgba(25, 172, 134, 0.09), transparent 33%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(230, 245, 240, 0.36));
}

.lv1-commons-field::before,
.lv1-commons-field::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(185, 207, 202, 0.62);
    border-radius: 50%;
}

.lv1-commons-field::before {
    inset: 10% 13%;
    border-style: dashed;
}

.lv1-commons-field::after {
    width: 58%;
    height: 72%;
    right: -14%;
    bottom: -34%;
}

.lv1-commons-admin,
.lv1-commons-owner,
.lv1-commons-contribution {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--lv1-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lv1-commons-admin > span,
.lv1-commons-owner > span,
.lv1-commons-contribution > span {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 6px solid var(--lv1-paper);
    border-radius: 50%;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: 0 0 0 1px var(--lv1-rule);
}

.lv1-commons-admin strong,
.lv1-commons-owner strong,
.lv1-commons-contribution strong {
    display: block;
    font-size: 0.65rem;
    line-height: 1.25;
}

.lv1-commons-admin small,
.lv1-commons-owner small,
.lv1-commons-contribution small {
    display: block;
    margin-top: 2px;
    color: var(--lv1-muted);
    font-size: 0.54rem;
    line-height: 1.3;
}

.lv1-commons-admin {
    right: 11%;
    top: 13%;
}

.lv1-commons-admin > span {
    width: 38px;
    height: 38px;
    background: var(--lv1-teal);
}

.lv1-commons-owner {
    left: 39%;
    bottom: 10%;
}

.lv1-commons-owner > span {
    width: 43px;
    height: 43px;
    background: var(--lv1-green);
}

.lv1-commons-contribution { width: 150px; }

.lv1-commons-contribution > span {
    width: 43px;
    height: 43px;
}

.lv1-commons-contribution::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 54px;
    height: 1px;
    opacity: 0.7;
}

.lv1-commons-circle {
    left: 2%;
    top: 39%;
}

.lv1-commons-circle > span { background: var(--lv1-amber); }
.lv1-commons-circle::after { right: -37px; background: var(--lv1-amber); }

.lv1-commons-mentor {
    right: 0;
    top: 37%;
}

.lv1-commons-mentor > span { background: var(--lv1-blue); }
.lv1-commons-mentor::after { left: -58px; background: var(--lv1-blue); }

.lv1-commons-work {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 49%;
    width: 43%;
    min-height: 154px;
    padding: 19px 20px 17px;
    transform: translate(-50%, -50%);
    border: 1px solid var(--lv1-rule-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(23, 51, 66, 0.12);
}

.lv1-commons-work-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--lv1-green-dark);
    font-family: Inter, sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lv1-commons-work > strong {
    display: block;
    max-width: 180px;
    font-size: 0.86rem;
    line-height: 1.4;
    letter-spacing: -0.025em;
}

.lv1-commons-evidence {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.95fr;
    gap: 5px;
    margin: 15px 0 9px;
}

.lv1-commons-evidence span {
    height: 6px;
    border-radius: 4px;
    background: var(--lv1-green-pale);
}

.lv1-commons-evidence span:nth-child(2) { background: #dce8ef; }
.lv1-commons-evidence span:nth-child(3) { background: #f4e7cb; }

.lv1-commons-work > small {
    display: block;
    max-width: 170px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.5rem;
    line-height: 1.4;
}

.lv1-commons-proof {
    position: absolute;
    right: -28px;
    bottom: -33px;
    width: 82px;
    height: 82px;
    display: grid;
    align-content: center;
    border: 8px solid var(--lv1-paper);
    border-radius: 50%;
    background: var(--lv1-ink);
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 1px var(--lv1-rule);
}

.lv1-commons-proof span {
    color: #a9c2ca;
    font-family: Inter, sans-serif;
    font-size: 0.45rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lv1-commons-proof strong {
    margin-top: 2px;
    font-size: 0.64rem;
}

.lv1-commons-memory {
    position: absolute;
    z-index: 2;
    width: 54px;
    height: 36px;
    border: 1px solid rgba(2, 155, 181, 0.25);
    border-radius: 6px;
    background:
        linear-gradient(to bottom, rgba(2, 155, 181, 0.16) 0 7px, rgba(255, 255, 255, 0.58) 7px 100%);
    opacity: 0.72;
}

.lv1-commons-memory-one { left: 18%; top: 22%; transform: rotate(-7deg); }
.lv1-commons-memory-two { right: 18%; bottom: 17%; transform: rotate(6deg); }
.lv1-commons-memory-three { left: 18%; bottom: 18%; transform: rotate(4deg); opacity: 0.42; }

.lv1-commons-return {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 3%;
    width: 220px;
    margin: 0;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.54rem;
    line-height: 1.4;
    text-align: right;
}

/* Practitioner path diagram */
.lv1-path-track {
    position: absolute;
    left: 7%;
    right: 8%;
    bottom: 23%;
    height: 48%;
    border-top: 2px solid var(--lv1-green);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.lv1-path-track::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 1%;
    top: -6px;
    border-top: 2px solid var(--lv1-green);
    border-right: 2px solid var(--lv1-green);
    transform: rotate(43deg);
}

.lv1-path-point {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 6px solid var(--lv1-paper);
    border-radius: 50%;
    background: var(--lv1-white);
    box-shadow: 0 0 0 1px var(--lv1-rule-strong);
}

.lv1-path-point::after {
    content: attr(data-label);
    position: absolute;
    width: max-content;
    color: var(--lv1-ink);
    font-family: Inter, sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
}

.lv1-path-point-one { left: 8%; bottom: 25%; }
.lv1-path-point-one::after { left: -12px; top: 23px; }
.lv1-path-point-two { left: 37%; bottom: 40%; background: var(--lv1-green); }
.lv1-path-point-two::after { left: -18px; top: 23px; }
.lv1-path-point-three { left: 61%; bottom: 57%; }
.lv1-path-point-three::after { left: -3px; top: 23px; }

.lv1-path-outcome {
    position: absolute;
    right: 5%;
    top: 16%;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lv1-ink);
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
}

.lv1-support {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.61rem;
}

.lv1-support::before {
    content: "";
    width: 34px;
    height: 34px;
    display: block;
    border-radius: 50%;
    background: var(--lv1-amber);
    box-shadow: 0 0 0 6px var(--lv1-paper);
}

.lv1-support-peer { left: 24%; top: 24%; }
.lv1-support-mentor { right: 27%; bottom: 17%; }
.lv1-support-mentor::before { background: var(--lv1-blue); }

/* Mentor ripple diagram */
.lv1-ripple {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(49, 94, 128, 0.28);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.lv1-ripple-one { width: 180px; height: 180px; }
.lv1-ripple-two { width: 310px; height: 310px; }
.lv1-ripple-three { width: 440px; height: 440px; opacity: 0.55; }

.lv1-ripple-center {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--lv1-blue);
    color: #fff;
    text-align: center;
    font-size: 0.73rem;
    line-height: 1.35;
}

.lv1-ripple-node {
    position: absolute;
    color: var(--lv1-ink);
    font-family: Inter, sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
}
.lv1-ripple-node::before {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 7px;
    vertical-align: middle;
    border-radius: 50%;
    background: var(--lv1-green);
    box-shadow: 0 0 0 5px var(--lv1-paper);
}
.lv1-ripple-context { left: 12%; top: 37%; }
.lv1-ripple-action { right: 9%; top: 29%; }
.lv1-ripple-proof { right: 15%; bottom: 20%; }
.lv1-ripple-return { left: 15%; bottom: 14%; }
.lv1-ripple-proof::before { background: var(--lv1-amber); }
.lv1-ripple-return::before { background: var(--lv1-teal); }

/* Admin branching diagram */
.lv1-purpose-node {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--lv1-teal);
    color: #fff;
    text-align: center;
    font-size: 0.74rem;
}

.lv1-branch-line {
    position: absolute;
    left: 24%;
    width: 43%;
    height: 1px;
    background: var(--lv1-rule-strong);
}
.lv1-branch-one { top: 28%; transform: rotate(-12deg); }
.lv1-branch-two { top: 50%; }
.lv1-branch-three { top: 72%; transform: rotate(12deg); }

.lv1-branch-node {
    position: absolute;
    left: 54%;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 7px solid var(--lv1-paper);
    border-radius: 50%;
    background: var(--lv1-white);
    color: var(--lv1-ink);
    font-family: Inter, sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    box-shadow: 0 0 0 1px var(--lv1-rule-strong);
}
.lv1-branch-node-one { top: 21%; }
.lv1-branch-node-two { top: 43%; background: var(--lv1-blue); color: #fff; }
.lv1-branch-node-three { top: 65%; background: var(--lv1-amber); color: #fff; }

.lv1-admin-outcome {
    position: absolute;
    right: 4%;
    top: 50%;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--lv1-ink);
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
}

.lv1-converge {
    position: absolute;
    right: 22%;
    top: 27%;
    width: 18%;
    height: 46%;
    border-right: 2px solid var(--lv1-teal);
    border-top: 1px solid var(--lv1-teal);
    border-bottom: 1px solid var(--lv1-teal);
    border-radius: 0 50% 50% 0;
}

/* Shared horizontal movement */
.lv1-motion {
    padding: 72px 0 82px;
    background: var(--lv1-white);
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.lv1-section-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.85rem, 3.4vw, 3rem);
    line-height: 1.17;
    letter-spacing: -0.045em;
}

.lv1-section-aside {
    max-width: 310px;
    margin: 0 0 3px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    line-height: 1.55;
    text-align: right;
}

.lv1-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lv1-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 8%;
    right: 8%;
    top: 35px;
    height: 1px;
    background: var(--lv1-rule-strong);
}

.lv1-step {
    position: relative;
    z-index: 1;
    min-height: 188px;
    padding: 22px 24px 26px;
    border: 1px solid var(--lv1-rule);
    border-radius: 15px;
    background: #fcfdfa;
}

.lv1-step-number {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--lv1-green-pale);
    color: var(--lv1-green-dark);
    font-family: Inter, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 0 0 7px #fcfdfa;
}

.role-mentor .lv1-step-number { background: var(--lv1-blue-pale); color: var(--lv1-blue); }
.role-admin .lv1-step-number { background: var(--lv1-teal-pale); color: #047f92; }

.lv1-step h3 { margin: 0 0 10px; font-size: 0.96rem; }
.lv1-step p { margin: 0; color: var(--lv1-body); font-family: Inter, sans-serif; font-size: 0.78rem; line-height: 1.62; }

/* Product practice rail */
.lv1-practice {
    padding: 84px 0;
    background: var(--lv1-paper);
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-practice-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
    gap: 64px;
    align-items: center;
}

.lv1-practice-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.lv1-practice-copy p {
    margin: 0;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    line-height: 1.72;
}

.lv1-practice-workbench {
    position: relative;
    min-height: 330px;
    padding: 54px 34px 34px;
    border: 1px solid var(--lv1-rule);
    border-radius: 22px;
    background: var(--lv1-white);
    box-shadow: var(--lv1-shadow);
}

.lv1-workbench-label {
    position: absolute;
    top: 21px;
    left: 28px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lv1-practice-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    min-height: 115px;
}

.lv1-practice-rail::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 43px;
    height: 2px;
    background: linear-gradient(90deg, var(--lv1-green), var(--lv1-teal), var(--lv1-blue));
}

.lv1-practice-point {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lv1-practice-point::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    margin: 34px auto 20px;
    border: 6px solid var(--lv1-white);
    border-radius: 50%;
    background: var(--lv1-green);
    box-shadow: 0 0 0 1px var(--lv1-rule-strong);
}

.lv1-practice-point:nth-child(3)::before { background: var(--lv1-amber); }
.lv1-practice-point:nth-child(4)::before { background: var(--lv1-teal); }
.lv1-practice-point:nth-child(5)::before { background: var(--lv1-blue); }
.lv1-practice-point strong { display: block; font-size: 0.68rem; }
.lv1-practice-point span { display: block; margin-top: 4px; color: var(--lv1-muted); font-family: Inter, sans-serif; font-size: 0.56rem; }

.lv1-artifacts {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: 9px;
    margin-top: 22px;
}

.lv1-artifact {
    min-height: 90px;
    padding: 15px;
    border: 1px solid var(--lv1-rule);
    background: #fbfcfa;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.65rem;
    line-height: 1.45;
}

.lv1-artifact:first-child { transform: rotate(-1.2deg); }
.lv1-artifact:last-child { transform: rotate(1.2deg); }
.lv1-artifact strong { display: block; margin-bottom: 7px; color: var(--lv1-ink); font-family: 'Comfortaa', sans-serif; font-size: 0.7rem; }

/* Role pathways: horizontal, not card tiles */
.lv1-pathways {
    padding: 84px 0;
    background: var(--lv1-white);
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-pathway-list { border-top: 1px solid var(--lv1-rule); }

.lv1-pathway {
    display: grid;
    grid-template-columns: 76px 1fr minmax(260px, 0.8fr) auto;
    gap: 26px;
    align-items: center;
    min-height: 132px;
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-pathway-number { color: var(--lv1-muted); font-family: Inter, sans-serif; font-size: 0.72rem; }
.lv1-pathway h3 { margin: 0; font-size: 1.05rem; }
.lv1-pathway p { margin: 0; color: var(--lv1-body); font-family: Inter, sans-serif; font-size: 0.78rem; line-height: 1.58; }
.lv1-pathway a { color: var(--lv1-ink); font-size: 0.75rem; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }

/* Community Admin stewardship — horizontal tiles */
.lv1-steward-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lv1-steward-tile {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    padding: 22px 23px 24px;
    border: 1px solid var(--lv1-rule);
    border-radius: 16px;
    background: #fcfdfa;
    transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.lv1-steward-tile:hover {
    transform: translateY(-4px);
    border-color: var(--lv1-rule-strong);
    box-shadow: 0 16px 36px rgba(23, 51, 66, 0.08);
}

.lv1-steward-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lv1-steward-topline strong { color: #047f92; font-size: 0.58rem; }
.role-mentor .lv1-steward-topline strong { color: var(--lv1-blue); }

.lv1-steward-visual {
    position: relative;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 23px 0 24px;
    padding: 12px 18px;
    overflow: hidden;
    border: 1px solid #cfe4e4;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5fbfa 0%, #eaf6f5 100%);
}

.lv1-steward-visual-path::before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    top: 50%;
    height: 2px;
    background: var(--lv1-teal);
}

.lv1-steward-visual-path span {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 5px solid #eef8f6;
    border-radius: 50%;
    background: var(--lv1-teal);
    box-shadow: 0 0 0 1px rgba(2, 155, 181, 0.22);
}

.lv1-steward-visual-practice { gap: 9px; }

.lv1-steward-visual-practice span {
    width: 30%;
    height: 45px;
    border: 1px solid #b8d9d9;
    border-radius: 7px;
    background: #fff;
    box-shadow: inset 0 7px 0 #d8eeeb;
}

.lv1-steward-visual-practice span:nth-child(2) { box-shadow: inset 0 7px 0 #b9ded9; transform: translateY(-5px); }

.lv1-steward-visual-signal {
    align-items: flex-end;
    justify-content: center;
    gap: 9px;
    padding-bottom: 14px;
}

.lv1-steward-visual-signal span {
    width: 15%;
    border-radius: 5px 5px 2px 2px;
    background: var(--lv1-teal);
}
.lv1-steward-visual-signal span:nth-child(1) { height: 18px; opacity: 0.45; }
.lv1-steward-visual-signal span:nth-child(2) { height: 31px; opacity: 0.62; }
.lv1-steward-visual-signal span:nth-child(3) { height: 43px; opacity: 0.8; }
.lv1-steward-visual-signal span:nth-child(4) { height: 55px; }

/* Mentor boundaries — the same horizontal rhythm with guidance-specific signals */
.role-mentor .lv1-steward-visual {
    border-color: #cddce7;
    background: linear-gradient(135deg, #f7fafc 0%, var(--lv1-blue-pale) 100%);
}

.lv1-mentor-visual-pattern span {
    position: absolute;
    width: 58%;
    height: 13px;
    border: 1px solid #a9c3d5;
    border-radius: 8px;
    background: #fff;
}
.lv1-mentor-visual-pattern span:nth-child(1) { transform: translate(-14px, -20px); }
.lv1-mentor-visual-pattern span:nth-child(2) { transform: translate(0, 0); border-color: var(--lv1-blue); background: #dceaf3; }
.lv1-mentor-visual-pattern span:nth-child(3) { transform: translate(14px, 20px); }

.lv1-mentor-visual-agency::before {
    content: "";
    position: absolute;
    left: 22%;
    right: 22%;
    top: 50%;
    border-top: 1px dashed #86aac1;
}

.lv1-mentor-visual-agency span {
    position: relative;
    z-index: 1;
    width: 17px;
    height: 17px;
    border: 2px solid #7da4bd;
    border-radius: 50%;
    background: #f7fafc;
}
.lv1-mentor-visual-agency span:nth-child(2) {
    width: 34px;
    height: 34px;
    border: 7px solid #dceaf3;
    background: var(--lv1-blue);
    box-shadow: 0 0 0 1px rgba(49, 94, 128, 0.25);
}

.lv1-mentor-visual-learning { gap: 8px; }
.lv1-mentor-visual-learning span {
    width: 27%;
    height: 48px;
    border: 1px solid #a9c3d5;
    border-radius: 7px;
    background: linear-gradient(to bottom, #c8dce9 0 8px, #fff 8px 100%);
}
.lv1-mentor-visual-learning span:nth-child(1) { transform: rotate(-5deg) translateY(3px); }
.lv1-mentor-visual-learning span:nth-child(2) { transform: translateY(-5px); border-color: var(--lv1-blue); }
.lv1-mentor-visual-learning span:nth-child(3) { transform: rotate(5deg) translateY(3px); }

.lv1-steward-tile h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.45;
    letter-spacing: -0.02em;
}

.lv1-steward-tile p {
    margin: 0 0 22px;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.76rem;
    line-height: 1.62;
}

.lv1-steward-tile a {
    align-self: flex-start;
    margin-top: auto;
    color: var(--lv1-ink);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

/* Entry-page sample: image-led role hero + horizontal role tiles */
.lv1-role-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 64px;
    align-items: center;
    margin-bottom: 34px;
}

.lv1-role-hero-copy { padding: 10px 0; }

.lv1-role-hero-lede {
    max-width: 480px;
    margin: 22px 0 0;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
}

.lv1-role-hero-media {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--lv1-rule);
    border-radius: 22px;
    background: #f4f0e7;
    box-shadow: var(--lv1-shadow);
}

.lv1-role-hero-media img {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    object-position: center 43%;
}

.lv1-role-hero-media figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 9px;
    background: rgba(23, 51, 66, 0.86);
    color: #edf5f4;
    font-family: Inter, sans-serif;
    font-size: 0.65rem;
    line-height: 1.45;
    backdrop-filter: blur(8px);
}

.lv1-role-gate-note {
    margin: 0 0 18px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.72rem;
    line-height: 1.55;
    text-align: right;
}

.lv1-role-tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lv1-role-tile {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 22px 23px 24px;
    overflow: hidden;
    border: 1px solid var(--lv1-rule);
    border-radius: 16px;
    background: #fcfdfa;
    transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.lv1-role-tile::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: var(--lv1-green);
}

.lv1-role-tile-mentor::before { background: var(--lv1-blue); }
.lv1-role-tile-admin::before { background: var(--lv1-teal); }

.lv1-role-tile:hover {
    transform: translateY(-4px);
    border-color: var(--lv1-rule-strong);
    box-shadow: 0 16px 36px rgba(23, 51, 66, 0.09);
}

.lv1-role-tile-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lv1-role-tile-topline strong {
    color: var(--lv1-green-dark);
    font-size: 0.59rem;
}
.lv1-role-tile-mentor .lv1-role-tile-topline strong { color: var(--lv1-blue); }
.lv1-role-tile-admin .lv1-role-tile-topline strong { color: #047f92; }

.lv1-role-symbol {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--lv1-green-pale);
    color: var(--lv1-green-dark);
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
}
.lv1-role-tile-mentor .lv1-role-symbol { background: var(--lv1-blue-pale); color: var(--lv1-blue); }
.lv1-role-tile-admin .lv1-role-symbol { background: var(--lv1-teal-pale); color: #047f92; }

.lv1-role-tile h3 {
    margin: 0 0 13px;
    font-size: 1.08rem;
    line-height: 1.42;
    letter-spacing: -0.025em;
}

.lv1-role-tile p {
    margin: 0 0 18px;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    line-height: 1.62;
}

.lv1-role-proof {
    display: block;
    margin-bottom: 24px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.62rem;
    line-height: 1.5;
}

.lv1-role-tile a {
    align-self: flex-start;
    margin-top: auto;
    color: var(--lv1-ink);
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

/* V2 story focus: one product structure, different actor contributions */
.lv2-role-story .lv1-role-hero-media img {
    transform: scale(1.16);
}

.role-seeker .lv2-role-story .lv1-role-hero-media img {
    object-position: 50% 50%;
    transform-origin: 50% 50%;
    transform: scale(1.26);
}

.role-mentor .lv2-role-story .lv1-role-hero-media img {
    object-position: 70% 50%;
    transform-origin: 70% 50%;
    transform: scale(1.24);
}

.role-admin .lv2-role-story .lv1-role-hero-media img {
    object-position: 24% 50%;
    transform-origin: 24% 50%;
    transform: scale(1.24);
}

.role-seeker .lv1-steward-topline strong { color: var(--lv1-green-dark); }

.role-seeker .lv1-steward-visual {
    border-color: #c9e1da;
    background: linear-gradient(135deg, #f7fcfa 0%, var(--lv1-green-pale) 100%);
}

.role-seeker .lv1-steward-visual-path::before,
.role-seeker .lv1-steward-visual-path span,
.role-seeker .lv1-steward-visual-signal span {
    background: var(--lv1-green);
}

/* V2 chapter rhythm — one message per screen */
.landing-v2 .lv2-chapter {
    position: relative;
    scroll-margin-top: 72px;
}

.landing-v2 .lv2-chapter-final {
    display: grid;
    align-items: center;
}

/* Entry page: the community strengthens judgment without taking ownership */
.lv2-decision-visual {
    position: relative;
    min-height: 410px;
    padding: 58px 32px 24px;
    overflow: hidden;
    border: 1px solid var(--lv1-rule);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 46%, rgba(25, 172, 134, 0.08), transparent 35%),
        var(--lv1-white);
    box-shadow: var(--lv1-shadow);
}

.lv2-decision-label {
    position: absolute;
    left: 28px;
    top: 21px;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lv2-decision-field {
    position: relative;
    min-height: 285px;
}

.lv2-decision-orbit {
    position: absolute;
    left: 50%;
    top: 48%;
    border: 1px solid var(--lv1-rule-strong);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lv2-decision-orbit--one { width: 230px; height: 230px; }
.lv2-decision-orbit--two {
    width: 390px;
    height: 255px;
    border-style: dashed;
    opacity: 0.72;
}

.lv2-decision-core {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 48%;
    width: 158px;
    height: 158px;
    display: grid;
    place-content: center;
    gap: 8px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--lv1-ink);
    color: #fff;
    text-align: center;
    box-shadow: 0 16px 38px rgba(23, 51, 66, 0.16);
}

.lv2-decision-core small {
    color: #a9c2c6;
    font-family: Inter, sans-serif;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lv2-decision-core strong { font-size: 0.92rem; line-height: 1.45; }

.lv2-decision-signal {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.64rem;
    font-weight: 600;
}

.lv2-decision-signal i {
    width: 16px;
    height: 16px;
    display: block;
    border: 5px solid var(--lv1-white);
    border-radius: 50%;
    background: var(--lv1-green);
    box-shadow: 0 0 0 1px var(--lv1-rule-strong);
}

.lv2-decision-signal--evidence { left: 3%; top: 13%; }
.lv2-decision-signal--peers { right: 2%; top: 18%; }
.lv2-decision-signal--peers i { background: var(--lv1-amber); }
.lv2-decision-signal--mentor { left: 8%; bottom: 12%; }
.lv2-decision-signal--mentor i { background: var(--lv1-blue); }

.lv2-decision-field > p {
    position: absolute;
    right: 5%;
    bottom: 11%;
    margin: 0;
    color: var(--lv1-green-dark);
    font-size: 0.69rem;
    font-weight: 700;
}

.lv2-decision-caption {
    margin: 4px auto 0;
    color: var(--lv1-muted);
    font-family: Inter, sans-serif;
    font-size: 0.66rem;
    line-height: 1.55;
    text-align: center;
}

@media (min-width: 761px) {
    .landing-v2 .lv1-hero-grid { min-height: calc(100svh - 72px); }

    .landing-v2 .lv2-chapter:not(.lv1-hero) {
        min-height: calc(100svh - 72px);
        display: grid;
        align-items: center;
    }
}

.lv1-promise {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: var(--lv1-ink);
    color: #fff;
}

.lv1-promise::before,
.lv1-promise::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}
.lv1-promise::before { width: 520px; height: 520px; right: -140px; top: -240px; }
.lv1-promise::after { width: 290px; height: 290px; right: 60px; top: -80px; border-style: dashed; }

.lv1-promise-inner {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.lv1-promise .lv1-section-kicker { color: #8edbc7; }
.lv1-promise h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.14; letter-spacing: -0.05em; }
.lv1-promise h2 strong { display: block; color: #7cd7c0; }
.role-mentor .lv1-promise h2 strong { color: #9cc5df; }
.role-admin .lv1-promise h2 strong { color: #83d9e5; }
.lv1-promise p { max-width: 670px; margin: 0 0 28px; color: #c5d5d8; font-family: Inter, sans-serif; font-size: 0.9rem; line-height: 1.7; }

.lv1-principles {
    padding: 26px 0;
    background: #f0f7f4;
    border-bottom: 1px solid var(--lv1-rule);
}

.lv1-principles-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    color: var(--lv1-body);
    font-family: Inter, sans-serif;
    font-size: 0.7rem;
}

.lv1-principles-inner span + span::before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    margin-right: 22px;
    border-radius: 50%;
    background: var(--lv1-green);
    vertical-align: middle;
}

.lv1-footer { padding: 34px 0; background: var(--lv1-white); }
.lv1-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lv1-footer p { margin: 0; color: var(--lv1-muted); font-family: Inter, sans-serif; font-size: 0.7rem; }
.lv1-footer-links { display: flex; gap: 18px; }
.lv1-footer-links a { color: var(--lv1-body); font-size: 0.68rem; text-decoration: none; }

@media (max-width: 980px) {
    .lv1-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr); gap: 18px; }
    .lv1-title { font-size: 3rem; }
    .lv1-practice-grid { grid-template-columns: 1fr; gap: 36px; }
    .lv1-pathway { grid-template-columns: 58px 0.8fr 1fr auto; gap: 18px; }
    .lv1-role-hero { grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr); gap: 36px; }
    .lv1-role-hero-media img { height: 300px; }
}

@media (max-width: 760px) {
    .landing-v2 .lv2-chapter { scroll-margin-top: 62px; }
    .lv1-nav a:not(.lv1-login) { display: none; }
    .lv1-hero-grid { min-height: 0; grid-template-columns: 1fr; }
    .lv1-hero-copy { padding: 58px 0 20px; }
    .lv1-title { font-size: 2.45rem; line-height: 1.1; }
    .lv1-section-title { font-size: 2.1rem; line-height: 1.2; }
    .lv1-practice-copy h2 { font-size: 2rem; line-height: 1.22; }
    .lv1-visual {
        width: min(100%, 480px);
        min-height: 390px;
        margin: 0 auto 36px;
    }
    .lv1-section-head { align-items: start; flex-direction: column; gap: 14px; }
    .lv1-section-aside { text-align: left; }
    .lv1-pathway { grid-template-columns: 44px 1fr auto; padding: 22px 0; }
    .lv1-pathway p { grid-column: 2 / -1; }
    .lv1-role-hero { grid-template-columns: 1fr; gap: 26px; }
    .lv1-role-hero-media { border-radius: 16px; }
    .lv1-role-hero-media img {
        height: 300px;
        object-position: center 50%;
    }
    .lv1-role-hero-media figcaption {
        position: static;
        border: 0;
        border-top: 1px solid var(--lv1-rule);
        border-radius: 0;
        background: #f8f8f2;
        color: var(--lv1-body);
        font-size: 0.72rem;
        line-height: 1.55;
        backdrop-filter: none;
    }
    .lv2-role-story .lv1-role-hero-media img {
        transform: scale(1.08);
    }
    .role-seeker .lv2-role-story .lv1-role-hero-media img {
        object-position: 50% 52%;
        transform-origin: 50% 52%;
        transform: scale(1.14);
    }
    .role-mentor .lv2-role-story .lv1-role-hero-media img {
        object-position: 68% 52%;
        transform-origin: 68% 52%;
        transform: scale(1.13);
    }
    .role-admin .lv2-role-story .lv1-role-hero-media img {
        object-position: 30% 52%;
        transform-origin: 30% 52%;
        transform: scale(1.13);
    }
    .lv1-role-gate-note { text-align: left; }
    .lv1-steward-tiles,
    .lv1-role-tiles { grid-template-columns: 1fr; }
    .lv1-steward-tile,
    .lv1-role-tile { min-height: 0; }
    .lv1-artifact:first-child,
    .lv1-artifact:last-child { transform: none; }
}

@media (max-width: 620px) {
    .lv1-shell { width: min(calc(100% - 32px), var(--lv1-max)); }
    .lv1-header-inner { min-height: 62px; }
    .lv1-logo { font-size: 1.15rem; }
    .lv1-nav .lv1-login { padding: 0.5rem 0.72rem; }
    .lv1-title { font-size: 2.12rem; line-height: 1.1; }
    .lv1-lede { font-size: 0.94rem; }
    .lv1-actions { align-items: stretch; flex-direction: column; }
    .lv1-action-primary, .lv1-action-secondary { width: 100%; }
    .lv1-visual { min-height: 330px; }
    .lv1-visual-label {
        left: 0;
        top: 0;
        max-width: 70%;
        line-height: 1.45;
    }
    .lv1-commons { min-height: 455px; }
    .lv1-commons .lv1-visual-label { left: 1%; top: 2%; }
    .lv1-commons-field { inset: 11% 0 8%; }
    .lv1-commons-admin { right: 3%; top: 11%; }
    .lv1-commons-admin > div,
    .lv1-commons-owner > div,
    .lv1-commons-contribution > div { max-width: 92px; }
    .lv1-commons-contribution { width: 125px; }
    .lv1-commons-circle { left: 0; top: 27%; }
    .lv1-commons-mentor { right: 0; top: 27%; }
    .lv1-commons-circle::after { right: -20px; width: 30px; }
    .lv1-commons-mentor::after { left: -33px; width: 30px; }
    .lv1-commons-work { top: 55%; width: 55%; min-height: 145px; padding: 16px 15px 14px; }
    .lv1-commons-work > strong { font-size: 0.78rem; }
    .lv1-commons-proof { right: -20px; bottom: -29px; width: 72px; height: 72px; border-width: 7px; }
    .lv1-commons-owner { left: 31%; bottom: 9%; }
    .lv1-commons-memory-one { left: 8%; top: 18%; }
    .lv1-commons-memory-two { right: 7%; bottom: 15%; }
    .lv1-commons-memory-three { display: none; }
    .lv1-commons-return { right: 2%; bottom: 1%; width: 240px; }
    .lv1-core { width: 98px; height: 98px; }
    .lv1-node { width: 48px; height: 48px; border-width: 6px; }
    .lv1-node-admin { left: 4%; }
    .lv1-node-mentor { right: 3%; }
    .lv1-path-outcome {
        right: 0;
        top: 20%;
        width: 88px;
        height: 88px;
        font-size: 0.66rem;
    }
    .lv1-path-track { left: 5%; right: 9%; bottom: 22%; height: 44%; }
    .lv1-path-point-one { left: 6%; }
    .lv1-path-point-two { left: 35%; }
    .lv1-path-point-three { left: 57%; }
    .lv1-support {
        max-width: 125px;
        align-items: flex-start;
        font-size: 0.55rem;
        line-height: 1.35;
    }
    .lv1-support::before {
        flex: 0 0 auto;
        width: 24px;
        height: 24px;
        box-shadow: 0 0 0 5px var(--lv1-paper);
    }
    .lv1-support-peer { left: 16%; top: 17%; }
    .lv1-support-mentor { right: 3%; bottom: 13%; }
    .lv1-ripple-three { width: 330px; height: 330px; }
    .lv1-ripple-two { width: 240px; height: 240px; }
    .lv1-ripple-center {
        width: 96px;
        height: 96px;
        font-size: 0.62rem;
    }
    .lv1-ripple-node {
        max-width: 118px;
        font-size: 0.54rem;
        line-height: 1.35;
    }
    .lv1-ripple-node::before {
        width: 14px;
        height: 14px;
        margin-right: 5px;
        box-shadow: 0 0 0 4px var(--lv1-paper);
    }
    .lv1-ripple-context { left: 1%; top: 36%; }
    .lv1-ripple-action { right: 0; top: 27%; }
    .lv1-ripple-proof { right: 0; bottom: 17%; }
    .lv1-ripple-return { left: 3%; bottom: 13%; }
    .lv1-purpose-node { width: 90px; height: 90px; }
    .lv1-admin-outcome { width: 92px; height: 92px; }
    .lv1-branch-line { left: 21%; width: 40%; }
    .lv1-branch-node {
        left: 47%;
        width: 48px;
        height: 48px;
        border-width: 6px;
        font-size: 0.5rem;
    }
    .lv1-converge { right: 18%; width: 18%; }
    .lv1-return-note {
        left: 4%;
        right: 4%;
        bottom: 3%;
        text-align: center;
        font-size: 0.52rem;
    }
    .lv1-steps { grid-template-columns: 1fr; }
    .lv1-steps::before { left: 38px; right: auto; top: 34px; bottom: 34px; width: 1px; height: auto; }
    .lv1-step { min-height: 150px; }
    .lv1-practice-workbench { padding: 50px 18px 24px; }
    .lv1-practice-rail { grid-template-columns: 1fr; gap: 0; }
    .lv1-practice-rail::before { left: 15px; right: auto; top: 18px; bottom: 18px; width: 2px; height: auto; }
    .lv1-practice-point { min-height: 50px; display: grid; grid-template-columns: 32px 1fr; align-items: center; text-align: left; }
    .lv1-practice-point::before { margin: 0; }
    .lv1-practice-point strong { grid-column: 2; }
    .lv1-practice-point span { grid-column: 2; }
    .lv2-decision-visual { min-height: 360px; padding: 55px 14px 20px; }
    .lv2-decision-field { min-height: 255px; }
    .lv2-decision-orbit--one { width: 190px; height: 190px; }
    .lv2-decision-orbit--two { width: 280px; height: 220px; }
    .lv2-decision-core { width: 132px; height: 132px; }
    .lv2-decision-core strong { font-size: 0.78rem; }
    .lv2-decision-signal { font-size: 0.55rem; }
    .lv2-decision-signal--evidence { left: 0; top: 5%; }
    .lv2-decision-signal--peers { right: 0; top: 5%; }
    .lv2-decision-signal--mentor { left: 2%; bottom: 4%; }
    .lv2-decision-field > p { right: 1%; bottom: 4%; font-size: 0.58rem; }
    .lv1-artifacts { grid-template-columns: 1fr; }
    .lv1-pathway { grid-template-columns: 36px 1fr; }
    .lv1-pathway a, .lv1-pathway p { grid-column: 2; }
    .lv1-steward-tiles { grid-template-columns: 1fr; }
    .lv1-steward-tile { min-height: 0; }
    .lv1-role-hero-media img { height: 250px; }
    .lv1-role-tiles { grid-template-columns: 1fr; }
    .lv1-role-tile { min-height: 0; }
    .lv1-principles-inner { align-items: start; flex-direction: column; gap: 9px; }
    .lv1-principles-inner span + span::before { margin-right: 12px; }
    .lv1-footer-inner { align-items: flex-start; flex-direction: column; }
    .lv1-footer-links { flex-wrap: wrap; row-gap: 8px; }
}

@media (max-width: 420px) {
    .lv1-shell { width: min(calc(100% - 28px), var(--lv1-max)); }
    .lv1-title { font-size: 1.92rem; }
    .lv1-section-title { font-size: 1.78rem; }
    .lv1-practice-copy h2 { font-size: 1.65rem; }
    .lv1-eyebrow,
    .lv1-section-kicker { letter-spacing: 0.12em; }
    .lv1-hero-copy { padding-top: 44px; }
    .lv1-visual { min-height: 305px; }
    .lv1-commons { min-height: 430px; }
    .lv1-commons-work {
        width: 60%;
        padding: 14px 13px 13px;
    }
    .lv1-commons-work > small { max-width: 145px; }
    .lv1-commons-proof {
        right: -15px;
        bottom: -24px;
        width: 66px;
        height: 66px;
    }
    .lv1-path-outcome {
        width: 78px;
        height: 78px;
        font-size: 0.58rem;
    }
    .lv1-support-peer { left: 9%; top: 17%; }
    .lv1-support-mentor { right: 0; bottom: 9%; }
    .lv1-ripple-three { width: 300px; height: 300px; }
    .lv1-ripple-two { width: 218px; height: 218px; }
    .lv1-ripple-one { width: 145px; height: 145px; }
    .lv1-ripple-node { max-width: 105px; font-size: 0.5rem; }
    .lv1-purpose-node,
    .lv1-admin-outcome {
        width: 78px;
        height: 78px;
        font-size: 0.58rem;
    }
    .lv1-branch-node {
        left: 45%;
        width: 44px;
        height: 44px;
    }
    .lv1-converge { right: 20%; }
    .lv1-motion,
    .lv1-practice,
    .lv1-pathways,
    .lv1-promise { padding: 58px 0; }
    .lv1-role-hero-media img { height: 220px; }
    .lv1-role-tile,
    .lv1-steward-tile {
        padding: 20px;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .lv1-action-primary, .lv1-action-secondary { transition: none; }
    .lv1-steward-tile { transition: none; }
    .lv1-role-tile { transition: none; }
}
