@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/pioneeree/poppins-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/pioneeree/poppins-medium.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/fonts/pioneeree/poppins-semibold.woff2") format("woff2");
}

@font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/pioneeree/poppins-bold.woff2") format("woff2");
}

:root {
    --pioneree-ink: #08141a;
    --pioneree-ink-soft: #183038;
    --pioneree-green: #20b86a;
    --pioneree-green-dark: #11844a;
    --pioneree-green-pale: #d9f7e6;
    --pioneree-sand: #f4f1e8;
    --pioneree-paper: #fbfcf8;
    --pioneree-line: #cad5d0;
    --pioneree-muted: #5e716f;
    --pioneree-warning: #d46b32;
    --pioneree-shell: 1240px;
    --pioneree-header-height: 82px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--pioneree-header-height) + 20px);
}

body.pioneree-site {
    margin: 0;
    background: var(--pioneree-paper);
    color: var(--pioneree-ink);
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

.pioneree-site *,
.pioneree-site *::before,
.pioneree-site *::after {
    box-sizing: border-box;
}

.pioneree-site h1,
.pioneree-site h2,
.pioneree-site h3,
.pioneree-site p {
    margin-top: 0;
}

.pioneree-site h1,
.pioneree-site h2,
.pioneree-site h3 {
    color: inherit;
    font-family: "Poppins", sans-serif;
}

.pioneree-site a {
    color: inherit;
}

.pioneree-page {
    min-height: 100vh;
}

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

.pioneree-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--pioneree-green);
    color: var(--pioneree-ink);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.pioneree-skip-link:focus {
    transform: translateY(0);
}

.pioneree-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--pioneree-header-height);
    border-bottom: 1px solid transparent;
    background: rgba(244, 241, 232, 0.9);
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.pioneree-header.is-scrolled {
    border-color: rgba(8, 20, 26, 0.1);
    box-shadow: 0 12px 36px rgba(8, 20, 26, 0.07);
}

.pioneree-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 28px;
}

.pioneree-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    text-decoration: none;
}

.pioneree-brand img {
    display: block;
    width: 176px;
    height: auto;
}

.pioneree-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
}

.pioneree-nav a,
.pioneree-header__signin {
    position: relative;
    color: var(--pioneree-ink-soft);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.pioneree-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--pioneree-green);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.pioneree-nav a:hover::after,
.pioneree-nav a:focus-visible::after {
    transform: scaleX(1);
}

.pioneree-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pioneree-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid var(--pioneree-green);
    border-radius: 3px;
    background: var(--pioneree-green);
    color: var(--pioneree-ink) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.pioneree-button:hover,
.pioneree-button:focus-visible {
    border-color: var(--pioneree-green-dark);
    background: var(--pioneree-green-dark);
    color: #fff !important;
    transform: translateY(-2px);
}

.pioneree-button--small {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 12px;
}

.pioneree-button--light {
    border-color: var(--pioneree-sand);
    background: var(--pioneree-sand);
    color: var(--pioneree-ink) !important;
}

.pioneree-button--dark {
    border-color: var(--pioneree-ink);
    background: var(--pioneree-ink);
    color: #fff !important;
}

.pioneree-language {
    position: relative;
}

.pioneree-language summary {
    display: flex;
    align-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(8, 20, 26, 0.16);
    border-radius: 50%;
    color: var(--pioneree-ink);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    list-style: none;
}

.pioneree-language summary::-webkit-details-marker,
.pioneree-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.pioneree-language__menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    min-width: 210px;
    padding: 8px;
    border: 1px solid rgba(8, 20, 26, 0.1);
    background: var(--pioneree-paper);
    box-shadow: 0 24px 70px rgba(8, 20, 26, 0.16);
}

.pioneree-language__menu a {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    color: var(--pioneree-ink);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.pioneree-language__menu a:hover,
.pioneree-language__menu a.is-active {
    background: var(--pioneree-green-pale);
}

.pioneree-mobile-menu {
    display: none;
}

.pioneree-hero {
    position: relative;
    overflow: hidden;
    background: var(--pioneree-sand);
}

.pioneree-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(8, 20, 26, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 20, 26, 0.045) 1px, transparent 1px);
    background-position: center;
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.6) 64%, transparent 100%);
}

.pioneree-hero__inner {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100svh - var(--pioneree-header-height) - 92px);
    padding-block: clamp(54px, 7vw, 94px);
    grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
    gap: clamp(44px, 6vw, 92px);
}

.pioneree-hero__copy {
    max-width: 590px;
    animation: pioneree-copy-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pioneree-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    color: var(--pioneree-green-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pioneree-eyebrow::before {
    width: 36px;
    height: 2px;
    margin-right: 12px;
    background: currentColor;
    content: "";
}

.pioneree-eyebrow--dark {
    color: var(--pioneree-green);
}

.pioneree-hero h1 {
    max-width: 690px;
    margin-bottom: 26px;
    font-size: clamp(43px, 5.3vw, 76px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.pioneree-hero__copy > p:not(.pioneree-hero__privacy) {
    max-width: 600px;
    margin-bottom: 32px;
    color: var(--pioneree-muted);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.65;
}

.pioneree-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.pioneree-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--pioneree-ink) !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.pioneree-text-link span {
    font-size: 21px;
    transition: transform 160ms ease;
}

.pioneree-text-link:hover span,
.pioneree-text-link:focus-visible span {
    transform: translateX(5px);
}

.pioneree-hero__privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 27px 0 0;
    color: var(--pioneree-muted);
    font-size: 12px;
    line-height: 1.5;
}

.pioneree-hero__privacy > span {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--pioneree-green);
    box-shadow: 0 0 0 5px rgba(32, 184, 106, 0.14);
}

.pioneree-workbench {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 20, 26, 0.18);
    border-radius: 8px;
    background: var(--pioneree-paper);
    box-shadow: 0 32px 90px rgba(8, 20, 26, 0.19);
    transform: rotate(1.25deg);
    animation: pioneree-workbench-in 800ms 100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.pioneree-workbench::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.pioneree-workbench__bar {
    display: grid;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(8, 20, 26, 0.11);
    background: #eef2ed;
    color: var(--pioneree-muted);
    grid-template-columns: 8px 8px 8px 1fr auto;
    gap: 8px;
}

.pioneree-workbench__bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aebbb6;
}

.pioneree-workbench__bar > span:nth-child(3) {
    background: var(--pioneree-green);
}

.pioneree-workbench__bar strong {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
}

.pioneree-workbench__bar em {
    color: var(--pioneree-ink);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pioneree-workbench__canvas {
    position: relative;
    min-height: 520px;
    padding: 30px;
    background:
        linear-gradient(rgba(8, 20, 26, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 20, 26, 0.035) 1px, transparent 1px),
        #fbfcf8;
    background-size: 28px 28px;
}

.pioneree-workbench__requirement,
.pioneree-workbench__rewrite {
    position: relative;
    z-index: 2;
    padding: 19px 21px;
    border-left: 3px solid var(--pioneree-ink);
    background: #fff;
    box-shadow: 0 12px 36px rgba(8, 20, 26, 0.08);
}

.pioneree-workbench__requirement > span,
.pioneree-workbench__rewrite > span,
.pioneree-workbench__results span {
    display: block;
    margin-bottom: 8px;
    color: var(--pioneree-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pioneree-workbench__requirement p,
.pioneree-workbench__rewrite p {
    margin-bottom: 0;
    color: var(--pioneree-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.pioneree-trace {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 90px;
    overflow: visible;
}

.pioneree-trace path {
    fill: none;
    stroke-width: 2.5;
    vector-effect: non-scaling-stroke;
}

.pioneree-trace__base {
    stroke: var(--pioneree-line);
}

.pioneree-trace__signal {
    stroke: var(--pioneree-green);
    stroke-dasharray: 820;
    stroke-dashoffset: 820;
    animation: pioneree-trace-draw 1.5s 750ms ease-out forwards;
}

.pioneree-trace circle {
    fill: var(--pioneree-paper);
    stroke: var(--pioneree-green);
    stroke-width: 3;
}

.pioneree-workbench__results {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    border: 1px solid rgba(8, 20, 26, 0.12);
    background: #fff;
}

.pioneree-workbench__results > div {
    min-height: 112px;
    padding: 17px;
    border-right: 1px solid rgba(8, 20, 26, 0.1);
}

.pioneree-workbench__results > div:last-child {
    border-right: 0;
}

.pioneree-workbench__results strong {
    display: block;
    margin-bottom: 3px;
    color: var(--pioneree-ink);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.pioneree-workbench__results small {
    display: block;
    color: var(--pioneree-muted);
    font-size: 10px;
    line-height: 1.45;
}

.pioneree-workbench__finding strong {
    color: var(--pioneree-warning);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.pioneree-workbench__rewrite {
    margin-top: 18px;
    border-left-color: var(--pioneree-green);
}

.pioneree-proof-rail {
    position: relative;
    display: grid;
    padding-block: 25px 28px;
    border-top: 1px solid rgba(8, 20, 26, 0.12);
    color: var(--pioneree-ink-soft);
    grid-template-columns: repeat(4, 1fr);
}

.pioneree-proof-rail span {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding-inline: 22px;
    border-right: 1px solid rgba(8, 20, 26, 0.12);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pioneree-proof-rail span:first-child {
    padding-left: 0;
}

.pioneree-proof-rail span:last-child {
    border-right: 0;
}

.pioneree-section {
    padding-block: clamp(88px, 11vw, 150px);
}

.pioneree-section--light {
    background: var(--pioneree-paper);
}

.pioneree-section--sand {
    background: var(--pioneree-sand);
}

.pioneree-section--dark {
    position: relative;
    overflow: hidden;
    background: var(--pioneree-ink);
    color: #fff;
}

.pioneree-section--dark::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(32, 184, 106, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(32, 184, 106, 0.035),
        0 0 0 160px rgba(32, 184, 106, 0.025);
    content: "";
}

.pioneree-story {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
    gap: clamp(60px, 10vw, 150px);
}

.pioneree-story__intro {
    align-self: start;
    position: sticky;
    top: calc(var(--pioneree-header-height) + 50px);
}

.pioneree-story h2,
.pioneree-assessment h2,
.pioneree-domains h2,
.pioneree-privacy h2,
.pioneree-final-cta h2 {
    margin-bottom: 25px;
    font-size: clamp(36px, 4.4vw, 64px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.pioneree-story__intro p,
.pioneree-domains__copy p,
.pioneree-privacy__intro p {
    max-width: 590px;
    color: var(--pioneree-muted);
    font-size: 17px;
}

.pioneree-steps {
    border-top: 1px solid var(--pioneree-line);
}

.pioneree-steps article {
    display: grid;
    padding-block: 34px;
    border-bottom: 1px solid var(--pioneree-line);
    grid-template-columns: 58px 1fr;
    gap: 22px;
}

.pioneree-steps article > span {
    color: var(--pioneree-green-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pioneree-steps h3 {
    margin-bottom: 9px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.pioneree-steps p {
    margin-bottom: 0;
    color: var(--pioneree-muted);
    font-size: 14px;
}

.pioneree-assessment {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(60px, 9vw, 130px);
}

.pioneree-assessment__copy > p {
    max-width: 570px;
    margin-bottom: 28px;
    color: #aebfbc;
    font-size: 17px;
}

.pioneree-assessment__dimensions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.pioneree-assessment__dimensions span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    color: #d7e2df;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pioneree-assessment__copy small {
    display: block;
    max-width: 430px;
    margin-top: 18px;
    color: #7f9591;
    font-size: 11px;
    line-height: 1.55;
}

.pioneree-maturity {
    position: relative;
    padding: 44px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.pioneree-maturity__axis {
    position: absolute;
    top: 20px;
    right: 0;
    left: 47%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), var(--pioneree-green));
}

.pioneree-maturity__axis::after {
    position: absolute;
    top: -4px;
    right: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pioneree-green);
    content: "";
}

.pioneree-maturity__row {
    display: grid;
    align-items: center;
    min-height: 71px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    grid-template-columns: 42px minmax(160px, 0.9fr) 1.1fr;
    gap: 16px;
}

.pioneree-maturity__row > span {
    color: var(--pioneree-green);
    font-size: 10px;
    font-weight: 700;
}

.pioneree-maturity__row strong {
    font-size: 14px;
    font-weight: 500;
}

.pioneree-maturity__row i {
    position: relative;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.pioneree-maturity__row i::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--score);
    background: var(--pioneree-green);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 900ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pioneree-maturity.is-visible .pioneree-maturity__row i::after {
    transform: scaleX(1);
}

.pioneree-maturity > p {
    margin: 20px 0 0;
    color: #7f9591;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

.pioneree-domains__copy {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pioneree-domains__copy .pioneree-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -48px;
}

.pioneree-domains__copy h2 {
    margin-bottom: 0;
}

.pioneree-domains__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 72px;
    border-top: 1px solid rgba(8, 20, 26, 0.17);
    border-left: 1px solid rgba(8, 20, 26, 0.17);
}

.pioneree-domains__list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    padding: 20px 24px;
    border-right: 1px solid rgba(8, 20, 26, 0.17);
    border-bottom: 1px solid rgba(8, 20, 26, 0.17);
    color: var(--pioneree-ink);
    flex: 1 1 25%;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    transition: background 160ms ease, color 160ms ease;
}

.pioneree-domains__list span:hover {
    background: var(--pioneree-ink);
    color: #fff;
}

.pioneree-disclaimer {
    max-width: 900px;
    margin: 28px 0 0;
    color: var(--pioneree-muted);
    font-size: 11px;
    line-height: 1.6;
}

.pioneree-privacy__intro {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.pioneree-privacy__intro .pioneree-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -48px;
}

.pioneree-privacy__intro h2 {
    margin-bottom: 0;
}

.pioneree-boundary {
    display: grid;
    align-items: stretch;
    margin-top: 72px;
    grid-template-columns: 1fr 46px 1fr 46px 1fr;
}

.pioneree-boundary article {
    padding: 30px 28px;
    border-top: 3px solid var(--pioneree-ink);
    background: var(--pioneree-sand);
}

.pioneree-boundary article:nth-of-type(2) {
    border-top-color: var(--pioneree-green);
}

.pioneree-boundary article:nth-of-type(3) {
    border-top-color: var(--pioneree-green-dark);
}

.pioneree-boundary article > span {
    display: block;
    margin-bottom: 24px;
    color: var(--pioneree-green-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.pioneree-boundary h3 {
    margin-bottom: 13px;
    font-size: 20px;
    font-weight: 600;
}

.pioneree-boundary p {
    margin-bottom: 0;
    color: var(--pioneree-muted);
    font-size: 13px;
}

.pioneree-boundary__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pioneree-green-dark);
    font-size: 24px;
}

.pioneree-final-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(70px, 8vw, 110px);
    background: var(--pioneree-green);
    color: var(--pioneree-ink);
}

.pioneree-final-cta::after {
    position: absolute;
    top: 50%;
    right: -90px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(8, 20, 26, 0.2);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.pioneree-final-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pioneree-final-cta h2 {
    max-width: 760px;
    margin-bottom: 14px;
}

.pioneree-final-cta p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 16px;
}

.pioneree-final-cta__actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 17px;
}

.pioneree-text-link--dark {
    color: var(--pioneree-ink) !important;
}

.pioneree-footer {
    padding-top: 72px;
    background: var(--pioneree-ink);
    color: #fff;
}

.pioneree-footer__top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 64px;
    gap: 70px;
}

.pioneree-footer__brand img {
    width: 184px;
}

.pioneree-footer__brand p {
    max-width: 430px;
    margin: 24px 0 0;
    color: #92a7a3;
    font-size: 13px;
}

.pioneree-footer__links {
    display: flex;
    gap: clamp(50px, 8vw, 110px);
}

.pioneree-footer__links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.pioneree-footer__links span {
    margin-bottom: 8px;
    color: var(--pioneree-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pioneree-footer__links a {
    color: #cfdbd8;
    font-size: 12px;
    text-decoration: none;
}

.pioneree-footer__links a:hover {
    color: #fff;
}

.pioneree-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #718884;
    font-size: 10px;
    gap: 30px;
}

.pioneree-site.has-motion [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pioneree-site.has-motion [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pioneree-copy-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pioneree-workbench-in {
    from { opacity: 0; transform: translateY(34px) rotate(2.5deg); }
    to { opacity: 1; transform: translateY(0) rotate(1.25deg); }
}

@keyframes pioneree-trace-draw {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 1120px) {
    .pioneree-nav {
        display: none;
    }

    .pioneree-header__actions {
        margin-left: auto;
    }

    .pioneree-hero__inner {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
        gap: 42px;
    }

    .pioneree-workbench__canvas {
        min-height: 500px;
        padding: 24px;
    }

    .pioneree-story,
    .pioneree-assessment {
        gap: 70px;
    }
}

@media (max-width: 900px) {
    :root {
        --pioneree-header-height: 72px;
    }

    .pioneree-shell {
        width: min(calc(100% - 36px), var(--pioneree-shell));
    }

    .pioneree-header__actions {
        display: none;
    }

    .pioneree-mobile-menu {
        position: relative;
        display: block;
        margin-left: auto;
    }

    .pioneree-mobile-menu summary {
        display: grid;
        width: 42px;
        height: 42px;
        align-content: center;
        border: 1px solid rgba(8, 20, 26, 0.15);
        cursor: pointer;
        gap: 5px;
        justify-content: center;
        list-style: none;
    }

    .pioneree-mobile-menu summary span {
        width: 19px;
        height: 2px;
        background: var(--pioneree-ink);
    }

    .pioneree-mobile-menu__panel {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        display: grid;
        width: min(330px, calc(100vw - 36px));
        padding: 18px;
        border: 1px solid rgba(8, 20, 26, 0.12);
        background: var(--pioneree-paper);
        box-shadow: 0 24px 70px rgba(8, 20, 26, 0.18);
        gap: 2px;
    }

    .pioneree-mobile-menu__panel > a:not(.pioneree-button) {
        padding: 11px 8px;
        color: var(--pioneree-ink);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
    }

    .pioneree-mobile-menu__panel .pioneree-button {
        margin-top: 10px;
    }

    .pioneree-mobile-menu__languages {
        display: flex;
        gap: 6px;
        padding: 13px 8px;
        border-block: 1px solid rgba(8, 20, 26, 0.1);
    }

    .pioneree-mobile-menu__languages a {
        padding: 5px 7px;
        background: var(--pioneree-sand);
        color: var(--pioneree-ink);
        font-size: 10px;
        font-weight: 700;
        text-decoration: none;
    }

    .pioneree-hero__inner {
        min-height: auto;
        padding-block: 64px 55px;
        grid-template-columns: 1fr;
    }

    .pioneree-hero__copy {
        max-width: 720px;
    }

    .pioneree-workbench {
        max-width: 720px;
        transform: none;
    }

    .pioneree-proof-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .pioneree-proof-rail span:nth-child(2) {
        border-right: 0;
    }

    .pioneree-proof-rail span:nth-child(n + 3) {
        border-top: 1px solid rgba(8, 20, 26, 0.12);
    }

    .pioneree-proof-rail span:nth-child(3) {
        padding-left: 0;
    }

    .pioneree-story,
    .pioneree-assessment {
        grid-template-columns: 1fr;
    }

    .pioneree-story__intro {
        position: static;
    }

    .pioneree-domains__copy,
    .pioneree-privacy__intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pioneree-domains__copy .pioneree-eyebrow,
    .pioneree-privacy__intro .pioneree-eyebrow {
        margin-bottom: 0;
    }

    .pioneree-boundary {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pioneree-boundary__arrow {
        min-height: 30px;
        transform: rotate(90deg);
    }

    .pioneree-final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .pioneree-final-cta__actions {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .pioneree-shell {
        width: min(calc(100% - 28px), var(--pioneree-shell));
    }

    .pioneree-brand img {
        width: 150px;
    }

    .pioneree-hero h1 {
        font-size: clamp(39px, 12.5vw, 56px);
    }

    .pioneree-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .pioneree-workbench__canvas {
        min-height: auto;
        padding: 17px;
    }

    .pioneree-workbench__requirement p,
    .pioneree-workbench__rewrite p {
        font-size: 11px;
    }

    .pioneree-workbench__results {
        grid-template-columns: 1fr 1fr;
    }

    .pioneree-workbench__results > div {
        min-height: 100px;
    }

    .pioneree-workbench__results > div:nth-child(2) {
        border-right: 0;
    }

    .pioneree-workbench__results > div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid rgba(8, 20, 26, 0.1);
    }

    .pioneree-proof-rail {
        grid-template-columns: 1fr;
    }

    .pioneree-proof-rail span {
        min-height: 45px;
        padding-inline: 0;
        border-top: 1px solid rgba(8, 20, 26, 0.12);
        border-right: 0;
    }

    .pioneree-proof-rail span:first-child {
        border-top: 0;
    }

    .pioneree-section {
        padding-block: 78px;
    }

    .pioneree-story h2,
    .pioneree-assessment h2,
    .pioneree-domains h2,
    .pioneree-privacy h2,
    .pioneree-final-cta h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .pioneree-maturity__row {
        min-height: 82px;
        grid-template-columns: 30px 1fr;
    }

    .pioneree-maturity__row i {
        grid-column: 2;
        margin-bottom: 17px;
    }

    .pioneree-maturity__axis {
        display: none;
    }

    .pioneree-domains__list span {
        min-height: 74px;
        flex-basis: 50%;
        font-size: 12px;
    }

    .pioneree-footer__top {
        flex-direction: column;
    }

    .pioneree-footer__links {
        flex-wrap: wrap;
    }

    .pioneree-footer__bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .pioneree-site *,
    .pioneree-site *::before,
    .pioneree-site *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
