:root {
    --pc-bg: #f7faf7;
    --pc-bg-soft: #eef4ec;
    --pc-surface: #ffffff;
    --pc-surface-alt: #f4f8f3;
    --pc-surface-dark: #09110b;
    --pc-surface-dark-alt: #111b14;
    --pc-ink: #121913;
    --pc-ink-soft: #5d685f;
    --pc-line: rgba(18, 25, 19, 0.1);
    --pc-line-strong: rgba(18, 25, 19, 0.16);
    --pc-green: #33cb6d;
    --pc-green-strong: #229e50;
    --pc-green-soft: rgba(51, 203, 109, 0.14);
    --pc-shadow-sm: 0 14px 32px rgba(8, 13, 9, 0.06);
    --pc-shadow-md: 0 26px 60px rgba(8, 13, 9, 0.1);
    --pc-shadow-lg: 0 42px 96px rgba(3, 7, 4, 0.18);
    --shell: min(1200px, calc(100vw - 40px));
    --site-promo-bar-height: 0px;
    --site-scroll-target-offset: calc(var(--site-header-shell-height, 72px) + 24px);
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top right, rgba(51, 203, 109, 0.08), transparent 18%),
        radial-gradient(circle at top left, rgba(51, 203, 109, 0.05), transparent 18%),
        linear-gradient(180deg, #fbfdfb 0%, var(--pc-bg) 100%);
    color: var(--pc-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body.feedback-modal-open {
    overflow: hidden;
}

.shell {
    width: var(--shell);
}

.shell--alerts {
    padding-top: 0;
}

.shell--alerts .alert {
    margin-top: 18px;
}

.site-main {
    overflow: clip;
}

[data-scroll-target] {
    scroll-margin-top: var(--site-scroll-target-offset);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.96;
    color: var(--pc-ink);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5.15rem);
}

h2 {
    font-size: clamp(1.85rem, 3.2vw, 3.1rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

p,
li,
input,
textarea,
select,
label {
    color: var(--pc-ink-soft);
    font-size: 0.97rem;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--pc-green-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pc-green-strong);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.text-link::after {
    content: "->";
}

.button,
button.button,
.promo-bar__cta {
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--pc-green) 0%, var(--pc-green-strong) 100%);
    color: #071008;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(51, 203, 109, 0.2);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.button:hover,
button.button:hover,
.promo-bar__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(51, 203, 109, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.96);
    color: var(--pc-ink);
    border: 1px solid var(--pc-line);
    box-shadow: var(--pc-shadow-sm);
}

.button-ghost {
    background: transparent;
    color: var(--pc-ink);
    box-shadow: inset 0 0 0 1px var(--pc-line);
}

.hero-cover__content .button-secondary,
.hero-cover__content .button-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.alert {
    border-radius: 20px;
    border: 1px solid var(--pc-line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--pc-shadow-sm);
}

.feedback-modal[hidden] {
    display: none !important;
}

.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.feedback-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 9, 6, 0.62);
    backdrop-filter: blur(10px);
}

.feedback-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 28px 28px 24px;
    border-radius: 28px;
    border: 1px solid rgba(18, 25, 19, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(245, 250, 244, 0.98));
    box-shadow: 0 36px 96px rgba(3, 7, 4, 0.24);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.22s ease;
}

.feedback-modal.is-open .feedback-modal__dialog {
    transform: translateY(0) scale(1);
}

.feedback-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--pc-line);
    border-radius: 14px;
    background: rgba(18, 25, 19, 0.04);
    color: var(--pc-ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.feedback-modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--pc-green-soft);
    color: var(--pc-green-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feedback-modal__dialog h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.04;
}

.feedback-modal__dialog p {
    margin-bottom: 22px;
    color: var(--pc-ink-soft);
    line-height: 1.7;
}

.feedback-modal__actions {
    display: flex;
    justify-content: flex-start;
}

.promo-bar {
    position: relative;
    z-index: 62;
    background: #070c08;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-bar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.promo-bar__copy {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.promo-bar__label {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(51, 203, 109, 0.12);
    color: #9df0bc;
    white-space: nowrap;
}

.promo-bar__text {
    color: rgba(255, 255, 255, 0.8);
}

.promo-bar__cta {
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    isolation: isolate;
    background: rgba(9, 17, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled {
    background: rgba(9, 17, 11, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.site-header.is-menu-open {
    background: rgba(9, 17, 11, 0.99);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
    position: relative;
    min-height: var(--site-header-shell-height, 72px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    overflow: visible;
}

.site-header__panel {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 63;
    gap: 12px;
    line-height: 1;
}

.brand strong {
    color: #ffffff;
    font-size: 0.98rem;
}

.brand small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.72rem;
}

.brand__image {
    display: block;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
}

.site-header .brand__image {
    height: var(--site-header-logo-height, 74px);
    max-height: none;
    max-width: min(320px, 28vw);
    margin-block: 0;
    filter: none;
}

.site-footer .brand__image {
    height: var(--site-footer-logo-height, 60px);
    max-height: none;
    filter: none;
}

.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 95;
}

.cookie-consent__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(9, 16, 11, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.cookie-consent__copy {
    max-width: 760px;
}

.cookie-consent__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent__copy .eyebrow {
    margin-bottom: 0;
    color: #9df0bc;
}

.cookie-consent__copy a {
    color: #9df0bc;
    font-weight: 800;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 12px;
}

.cookie-consent .button-secondary,
.cookie-consent .button-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

body.menu-open .cookie-consent {
    opacity: 0;
    pointer-events: none;
}

.brand__mark {
    background: linear-gradient(135deg, var(--pc-green) 0%, #93f3b8 100%);
    color: #09100b;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-inline: auto;
}

.site-nav a,
.header-link {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a::after {
    bottom: -15px;
    height: 2px;
    background: var(--pc-green);
}

.site-nav a.is-active,
.site-nav a:hover,
.header-link:hover {
    color: #ffffff;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-link {
    white-space: nowrap;
}

.menu-toggle {
    position: relative;
    z-index: 72;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.site-header.is-menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.menu-toggle > span:not(.sr-only) {
    position: absolute;
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: #ffffff;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.menu-toggle > .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mobile-menu-overlay[hidden] {
    display: none !important;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 160;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(4, 9, 6, 0.64);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.mobile-menu-overlay.is-open .mobile-menu-overlay__backdrop {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 420px);
    max-width: 100%;
    display: grid;
    align-content: start;
    gap: 20px;
    padding:
        calc(env(safe-area-inset-top, 0px) + 20px)
        22px
        calc(env(safe-area-inset-bottom, 0px) + 28px);
    background:
        radial-gradient(circle at top right, rgba(51, 203, 109, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(8, 14, 10, 0.98) 0%, rgba(14, 22, 16, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(28px);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-panel__brand-wrap {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.mobile-menu-panel__eyebrow {
    color: #9df0bc;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand--mobile-menu {
    width: fit-content;
    max-width: 100%;
}

.brand--mobile-menu .brand__image {
    height: min(52px, var(--site-mobile-logo-height, 60px));
    max-height: none;
    max-width: 220px;
    margin: 0;
    filter: none;
}

.mobile-menu-panel__title {
    margin: 0;
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.5;
}

.mobile-menu-close {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

.mobile-menu-close span:not(.sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.mobile-menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-nav {
    display: grid;
    gap: 10px;
}

.mobile-menu-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    opacity: 0;
    transform: translateX(16px);
    transition:
        transform 0.28s ease,
        opacity 0.28s ease,
        background 0.22s ease,
        border-color 0.22s ease;
    transition-delay: calc(var(--item-index, 0) * 34ms);
}

.mobile-menu-overlay.is-open .mobile-menu-nav__link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-nav__link:hover,
.mobile-menu-nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
}

.mobile-menu-nav__link.is-active {
    background: rgba(51, 203, 109, 0.16);
    border-color: rgba(51, 203, 109, 0.24);
}

.mobile-menu-nav__arrow {
    color: #9df0bc;
    font-size: 0.94rem;
}

.mobile-menu-actions {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.mobile-menu-actions .header-link,
.mobile-menu-actions .button {
    width: 100%;
    justify-content: center;
}

.mobile-menu-actions .header-link {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-align: center;
}

.mobile-menu-meta {
    display: grid;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-meta a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
}

@media (min-width: 921px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.section,
.hero,
.trust-bar {
    padding: clamp(76px, 8vw, 108px) 0;
}

.section--compact {
    padding: 56px 0 84px;
}

.section--soft {
    background: linear-gradient(180deg, var(--pc-bg-soft) 0%, #f8fbf7 100%);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 38px;
}

.hero--home-dynamic,
.hero--page {
    padding: 0 0 40px;
    background: var(--pc-surface-dark);
}

.hero-shell--full {
    width: 100%;
}

.hero-cover {
    position: relative;
    isolation: isolate;
    min-height: calc(100dvh - 136px);
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.hero--page .hero-cover {
    min-height: min(780px, 76dvh);
}

.hero-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 82% 16%, rgba(51, 203, 109, 0.16), transparent 18%),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.08), transparent 16%);
    pointer-events: none;
}

.hero-cover__image,
.hero-cover__abstract,
.hero-cover__overlay {
    position: absolute;
    inset: 0;
}

.hero-cover__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72) saturate(1.04);
}

.hero-cover__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 10, 7, 0.9) 0%, rgba(7, 12, 8, 0.84) 30%, rgba(7, 12, 8, 0.56) 58%, rgba(7, 12, 8, 0.22) 100%),
        linear-gradient(180deg, rgba(8, 12, 9, 0.1) 0%, rgba(8, 12, 9, 0.34) 100%);
}

.hero-cover__content {
    position: relative;
    z-index: 3;
    display: grid;
    align-content: center;
    min-height: calc(100dvh - 136px);
    padding-top: clamp(132px, 18vh, 180px);
    padding-bottom: 88px;
}

.hero-cover__content--home {
    padding-bottom: 152px;
}

.hero--page .hero-cover__content {
    min-height: min(780px, 76dvh);
    padding-top: 132px;
    padding-bottom: 72px;
}

.hero-cover__content .eyebrow {
    color: rgba(202, 247, 216, 0.88);
}

.hero-cover__content h1,
.hero-cover__content h2,
.hero-cover__content h3 {
    max-width: 10.6ch;
    margin-bottom: 18px;
    color: #ffffff;
    text-wrap: balance;
}

.hero-cover__content .hero__lead {
    max-width: 56ch;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
}

.hero-cover__content .page-hero__body {
    max-width: 58ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-stage-grid {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: -88px;
}

.hero-stage-card,
.sage-benefit-card,
.industry-card,
.testimonial-card,
.post-card,
.value-card,
.soft-panel,
.map-placeholder,
.form-card,
.prose-card,
.cta-banner,
.error-panel,
.narrative-card,
.detail-card,
.split-panel__card,
.info-card,
.industry-detail,
.customer-showcase__main,
.customer-showcase__quote,
.stats-band,
.faq-item {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--pc-line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 250, 245, 0.97));
    box-shadow: var(--pc-shadow-sm);
}

.hero-stage-card,
.sage-benefit-card,
.industry-card,
.testimonial-card,
.post-card,
.value-card,
.soft-panel,
.map-placeholder,
.prose-card,
.narrative-card,
.detail-card,
.split-panel__card,
.info-card,
.industry-detail {
    padding: 30px;
}

.form-card {
    padding: clamp(28px, 3vw, 38px);
}

.form-card--wide {
    max-width: 1040px;
}

.customer-showcase__main,
.customer-showcase__quote,
.stats-band,
.cta-banner {
    padding: clamp(28px, 3vw, 40px);
}

.hero-stage-card::before,
.sage-benefit-card::before,
.industry-card::before,
.testimonial-card::before,
.post-card::before,
.value-card::before,
.soft-panel::before,
.map-placeholder::before,
.prose-card::before,
.narrative-card::before,
.detail-card::before,
.split-panel__card::before,
.info-card::before,
.industry-detail::before,
.customer-showcase__main::before,
.customer-showcase__quote::before,
.stats-band::before,
.cta-banner::before,
.form-card::before,
.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pc-green), rgba(51, 203, 109, 0));
    opacity: 0.88;
}

.hero-stage-card:nth-child(2),
.customer-showcase__quote,
.stats-band,
.cta-banner,
.split-panel__card {
    border-color: rgba(255, 255, 255, 0.06);
    background: linear-gradient(155deg, var(--pc-surface-dark) 0%, var(--pc-surface-dark-alt) 100%);
    box-shadow: var(--pc-shadow-lg);
}

.hero-stage-card:nth-child(2) h3,
.hero-stage-card:nth-child(2) p,
.hero-stage-card:nth-child(2) .hero-stage-card__range,
.hero-stage-card:nth-child(2) .text-link,
.customer-showcase__quote h2,
.customer-showcase__quote h3,
.customer-showcase__quote p,
.customer-showcase__quote li,
.stats-band h2,
.stats-band h3,
.stats-band p,
.stats-band strong,
.stats-band span,
.cta-banner h2,
.cta-banner p,
.cta-banner .eyebrow,
.split-panel__card,
.split-panel__card li,
.split-panel__card .stat-card__eyebrow {
    color: #eef7ef;
}

.hero-stage-card__range,
.post-card__tag,
.industry-card__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--pc-green-soft);
    color: var(--pc-green-strong);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stage-card p,
.sage-benefit-card p,
.industry-card p,
.testimonial-card p,
.post-card p,
.value-card p,
.soft-panel p,
.map-placeholder p,
.prose-card p,
.narrative-card p,
.detail-card p,
.info-card p {
    color: var(--pc-ink-soft);
}

.sage-benefit-card:hover,
.industry-card:hover,
.testimonial-card:hover,
.post-card:hover,
.value-card:hover,
.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(51, 203, 109, 0.16);
    box-shadow: var(--pc-shadow-md);
}

.info-card__icon,
.sage-benefit-card__icon,
.industry-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(51, 203, 109, 0.14), rgba(51, 203, 109, 0.28));
    color: var(--pc-green-strong);
    font-weight: 800;
    font-size: 1rem;
}

.section-head > div {
    max-width: 760px;
}

.section-head h2,
.cta-banner h2,
.stats-band h2,
.customer-showcase h2 {
    max-width: 14ch;
}

.card-grid,
.card-grid--three,
.card-grid--services,
.sage-benefit-grid,
.testimonial-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-panel,
.contact-grid,
.blog-layout,
.narrative-grid,
.detail-card,
.customer-showcase,
.stats-band,
.cta-banner {
    display: grid;
    gap: 24px;
}

.split-panel,
.contact-grid,
.blog-layout,
.narrative-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: start;
}

.trust-strip__title {
    margin-bottom: 18px;
    color: var(--pc-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-pill {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--pc-line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--pc-ink);
    font-weight: 700;
    box-shadow: var(--pc-shadow-sm);
}

.customer-showcase {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.stats-band {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    align-items: center;
}

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

.stats-band__grid article {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-band__grid strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.76rem;
}

.detail-stack,
.faq-stack,
.blog-feed,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.detail-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: start;
}

.detail-card:nth-child(even),
.narrative-card--wide {
    background: linear-gradient(180deg, #f2f7ef 0%, #ffffff 100%);
}

.split-panel__content > *:last-child,
.narrative-card > *:last-child,
.detail-card > *:last-child,
.customer-showcase__main > *:last-child,
.customer-showcase__quote > *:last-child,
.cta-banner > *:last-child {
    margin-bottom: 0;
}

.mini-list,
.footer-links,
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mini-list {
    display: grid;
    gap: 14px;
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--pc-ink);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pc-green-soft);
    box-shadow: inset 0 0 0 5px var(--pc-green-strong);
}

.customer-showcase__quote .check-list li,
.split-panel__card .mini-list li {
    color: #eef7ef;
}

.customer-showcase__quote .check-list li::before {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 5px #93f3b8;
}

.blog-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.blog-layout > .soft-panel,
.contact-sidebar > .soft-panel {
    position: sticky;
    top: 132px;
}

.post-card--full h2 {
    max-width: 18ch;
}

.post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    color: var(--pc-ink-soft);
    font-size: 0.9rem;
}

.prose-card {
    padding: clamp(28px, 4vw, 40px);
}

.prose-card p {
    line-height: 1.8;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.contact-sidebar {
    display: grid;
    gap: 18px;
}

.form-grid,
.checkbox-grid {
    display: grid;
    gap: 18px;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid__full {
    grid-column: 1 / -1;
}

label,
fieldset {
    display: grid;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pc-ink);
}

fieldset {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid var(--pc-line);
    background: linear-gradient(180deg, #f8fbf8 0%, #f2f6f1 100%);
}

legend {
    padding: 0 8px;
    color: var(--pc-ink);
}

input,
textarea,
select {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--pc-line-strong);
    border-radius: 16px;
    padding: 14px 16px;
    background: #ffffff;
    color: var(--pc-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(34, 158, 80, 0.36);
    box-shadow:
        0 0 0 4px rgba(51, 203, 109, 0.12),
        0 10px 24px rgba(8, 13, 9, 0.08);
}

.checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--pc-line);
    background: #ffffff;
    box-shadow: var(--pc-shadow-sm);
}

.check-chip input {
    width: 18px;
    min-height: 18px;
    padding: 0;
    accent-color: var(--pc-green-strong);
    box-shadow: none;
}

.field-error {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(196, 64, 64, 0.08);
    color: #b53d3d;
    font-size: 0.85rem;
    font-weight: 700;
}

.faq-stack {
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 24px;
}

.faq-item__trigger {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 24px 26px;
    font-size: 1rem;
}

.faq-item__trigger span:last-child {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--pc-surface-alt);
    color: var(--pc-green-strong);
    transition: transform 0.22s ease, background 0.22s ease;
}

.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 26px;
    transition:
        grid-template-rows 0.24s ease,
        padding-bottom 0.24s ease;
}

.faq-item__body > * {
    overflow: hidden;
}

.faq-item.is-open .faq-item__body {
    grid-template-rows: 1fr;
    padding-bottom: 24px;
}

.faq-item.is-open .faq-item__trigger span:last-child {
    transform: rotate(45deg);
    background: var(--pc-green-soft);
}

.cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.site-footer {
    margin-top: clamp(56px, 8vw, 96px);
    padding: 76px 0 28px;
    background:
        radial-gradient(circle at top right, rgba(51, 203, 109, 0.12), transparent 18%),
        linear-gradient(180deg, #09110b 0%, #101913 54%, #08100b 100%);
    color: rgba(235, 244, 236, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 32px;
}

.site-footer h4,
.site-footer strong,
.site-footer a:hover {
    color: #ffffff;
}

.footer-copy {
    max-width: 34ch;
    color: rgba(235, 244, 236, 0.82);
}

.footer-links {
    display: grid;
    gap: 12px;
}

.site-footer a {
    color: rgba(241, 248, 242, 0.92);
}

.site-footer .footer-links a {
    color: rgba(241, 248, 242, 0.88);
}

.site-footer .footer-links a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
    .hero-stage-grid,
    .card-grid,
    .card-grid--three,
    .card-grid--services,
    .sage-benefit-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-band__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    :root {
        --site-scroll-target-offset: calc(var(--site-mobile-header-shell-height, 68px) + 22px);
    }

    .promo-bar__inner {
        padding: 10px 0;
        justify-content: center;
    }

    .promo-bar__copy {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .promo-bar__cta {
        display: none;
    }

    .site-header__inner {
        min-height: var(--site-mobile-header-shell-height, 68px);
        grid-template-columns: 1fr;
        gap: 0;
        padding-inline: 56px;
    }

    .site-header__inner > .brand {
        grid-column: 1;
        justify-self: center;
        text-align: center;
        width: 100%;
        max-width: min(72vw, 240px);
        justify-content: center;
    }

    .site-header__inner > .brand .brand__image {
        margin-inline: auto;
        height: var(--site-mobile-logo-height, 60px);
        max-height: none;
        max-width: min(72vw, 240px);
        margin-block: 0;
    }

    .site-header__inner > .menu-toggle {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 0;
        grid-column: auto;
        justify-self: auto;
        transform: translateY(-50%);
    }

    .site-header__panel {
        display: none;
    }

    .mobile-menu-panel {
        width: min(100vw, 420px);
    }

    .hero-cover,
    .hero-cover__content {
        min-height: 76dvh;
    }

    .hero-cover__content {
        padding-top: 116px;
        padding-bottom: 72px;
    }

    .hero-cover__content--home {
        padding-bottom: 88px;
    }

    .hero-stage-grid,
    .split-panel,
    .contact-grid,
    .blog-layout,
    .narrative-grid,
    .detail-card,
    .customer-showcase,
    .stats-band,
    .cta-banner {
        grid-template-columns: 1fr;
    }

    .hero-stage-grid {
        margin-top: 24px;
    }

    .blog-layout > .soft-panel,
    .contact-sidebar > .soft-panel {
        position: static;
    }

    .stats-band__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .cookie-consent__panel {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 20px;
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__actions .button {
        width: 100%;
    }
}

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

@media (max-width: 680px) {
    .section,
    .hero,
    .trust-bar {
        padding: 64px 0;
    }

    .section--compact {
        padding: 48px 0 72px;
    }

    .section-head {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .hero-cover__content h1,
    .hero-cover__content h2,
    .hero-cover__content h3 {
        max-width: 11ch;
    }

    .hero__actions .button,
    .hero__actions .button-secondary,
    .hero__actions .button-ghost {
        width: 100%;
    }

    .hero-stage-grid,
    .card-grid,
    .card-grid--three,
    .card-grid--services,
    .sage-benefit-grid,
    .testimonial-grid,
    .form-grid,
    .checkbox-grid,
    .stats-band__grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage-card,
    .sage-benefit-card,
    .industry-card,
    .testimonial-card,
    .post-card,
    .value-card,
    .soft-panel,
    .map-placeholder,
    .prose-card,
    .narrative-card,
    .detail-card,
    .split-panel__card,
    .info-card,
    .industry-detail,
    .form-card,
    .customer-showcase__main,
    .customer-showcase__quote,
    .stats-band,
    .cta-banner,
    .faq-item {
        border-radius: 22px;
    }

    .hero-cover__content {
        padding-top: 108px;
        padding-bottom: 54px;
    }

    .hero--page .hero-cover,
    .hero--page .hero-cover__content {
        min-height: 58dvh;
    }

    .hero-cover__content .hero__lead,
    .hero-cover__content .page-hero__body {
        font-size: 0.98rem;
    }

    .feedback-modal {
        padding: 16px;
    }

    .feedback-modal__dialog {
        padding: 24px 20px 20px;
        border-radius: 24px;
    }

    .feedback-modal__actions .button {
        width: 100%;
    }

    .customer-showcase__main,
    .customer-showcase__quote,
    .stats-band,
    .cta-banner,
    .form-card {
        padding: 24px;
    }

    .faq-item__trigger {
        padding: 20px 20px 18px;
    }

    .faq-item__body {
        padding: 0 20px;
    }

    .faq-item.is-open .faq-item__body {
        padding-bottom: 20px;
    }

}

@media (max-width: 540px) {
    .mobile-menu-panel {
        left: 0;
        width: 100%;
        border-left: 0;
        box-shadow: none;
        padding-inline: 20px;
    }

    .mobile-menu-panel__head {
        gap: 12px;
    }

    .mobile-menu-nav__link {
        padding: 16px;
        border-radius: 18px;
    }
}

/* Premium refinement pass */
.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 220;
    padding: 12px 16px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--pc-ink);
    font-weight: 800;
    box-shadow: var(--pc-shadow-md);
    transform: translateY(-140%);
    transition: transform 0.18s ease;
}

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

.site-main {
    position: relative;
}

.site-main::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 14% 8%, rgba(51, 203, 109, 0.06), transparent 20%),
        radial-gradient(circle at 86% 24%, rgba(34, 158, 80, 0.05), transparent 22%);
    z-index: -1;
}

.promo-bar {
    background:
        linear-gradient(90deg, rgba(51, 203, 109, 0.12), rgba(255, 255, 255, 0) 24%),
        #070c08;
}

.promo-bar__inner {
    min-height: 54px;
}

.site-header {
    background: rgba(9, 17, 11, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    gap: 28px;
}

.site-nav a,
.header-link {
    position: relative;
}

.site-nav a::after,
.header-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pc-green), rgba(51, 203, 109, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.header-link:hover::after {
    transform: scaleX(1);
}

.hero-cover__overlay {
    background:
        linear-gradient(90deg, rgba(7, 13, 8, 0.9) 0%, rgba(7, 13, 8, 0.58) 48%, rgba(7, 13, 8, 0.34) 100%),
        linear-gradient(180deg, rgba(7, 13, 8, 0.08) 0%, rgba(7, 13, 8, 0.42) 100%);
}

.hero-cover__content {
    max-width: var(--shell);
}

.hero-cover__content--home {
    max-width: min(1200px, calc(100vw - 40px));
}

.hero__actions {
    gap: 14px;
}

.hero__actions .button,
.hero__actions .button-secondary,
.hero__actions .button-ghost {
    min-width: 176px;
}

.section {
    padding: clamp(72px, 8vw, 108px) 0;
}

.section--soft {
    background:
        linear-gradient(180deg, rgba(241, 247, 240, 0.94) 0%, rgba(247, 250, 247, 0.98) 100%);
}

.section-head {
    align-items: end;
    gap: 24px;
}

.section-head p {
    max-width: 72ch;
}

.hero-stage-card,
.sage-benefit-card,
.industry-card,
.testimonial-card,
.post-card,
.value-card,
.soft-panel,
.map-placeholder,
.prose-card,
.narrative-card,
.detail-card,
.split-panel__card,
.info-card,
.industry-detail,
.form-card,
.customer-showcase__main,
.customer-showcase__quote,
.stats-band,
.cta-banner,
.faq-item {
    border: 1px solid rgba(18, 25, 19, 0.08);
    box-shadow: 0 24px 60px rgba(10, 17, 11, 0.08);
}

.hero-stage-card:hover,
.sage-benefit-card:hover,
.industry-card:hover,
.post-card:hover,
.info-card:hover,
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 72px rgba(10, 17, 11, 0.11);
}

.soft-panel,
.map-placeholder,
.form-card,
.prose-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 247, 0.98) 100%);
}

.form-card,
.form-card--wide {
    overflow: hidden;
}

.form-grid label,
.checkbox-panel {
    gap: 12px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    background: #ffffff;
    border-color: rgba(18, 25, 19, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: rgba(34, 158, 80, 0.46);
    box-shadow: 0 0 0 5px rgba(51, 203, 109, 0.12);
}

.contact-detail-list,
.footer-links--contact {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-detail-list li,
.footer-links--contact li {
    display: grid;
    gap: 4px;
}

.contact-detail-list strong,
.footer-links--contact strong {
    color: var(--pc-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-detail-list a,
.footer-links--contact a {
    color: var(--pc-ink);
    font-weight: 700;
}

.post-card {
    gap: 14px;
}

.post-card__media {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1.45;
    background: var(--pc-surface-alt);
}

.post-card__media--wide {
    aspect-ratio: 2.2;
    margin-bottom: 2px;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.post-card:hover .post-card__media img {
    transform: scale(1.04);
}

.post-card__meta {
    padding-top: 4px;
    border-top: 1px solid rgba(18, 25, 19, 0.08);
    color: var(--pc-ink-soft);
}

.site-footer {
    position: relative;
    margin-top: 32px;
    padding-top: 52px;
    background:
        radial-gradient(circle at top right, rgba(51, 203, 109, 0.12), transparent 24%),
        linear-gradient(180deg, #081008 0%, #0c140d 100%);
}

.site-footer__cta {
    padding-top: 0;
    transform: translateY(-38px);
    margin-bottom: -2px;
}

.footer-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 28px;
    align-items: center;
    padding: 28px 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(51, 203, 109, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(15, 26, 17, 0.98) 0%, rgba(12, 20, 13, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.footer-cta-card h2,
.footer-cta-card p,
.footer-cta-card .eyebrow {
    color: #ffffff;
}

.footer-cta-card p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.footer-cta-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.footer-grid {
    padding-top: 18px;
}

.footer-copy {
    max-width: 34ch;
}

.site-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-links--contact {
    gap: 14px;
}

.site-footer .footer-links--contact li {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-footer .footer-links--contact strong {
    margin-bottom: 4px;
    color: #9df0bc;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.site-footer .footer-links--contact a,
.site-footer .footer-links--contact .footer-contact__value {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.site-footer .footer-links--contact a:hover {
    color: #c7ffd8;
}

@media (max-width: 920px) {
    .footer-cta-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .footer-cta-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .site-footer__cta {
        transform: translateY(-24px);
    }

    .footer-cta-card__actions,
    .footer-cta-card__actions .button {
        width: 100%;
    }

    .post-card__media,
    .post-card__media--wide {
        aspect-ratio: 1.55;
    }
}

/* Bright orange, blue, and white brand palette */
:root {
    --pc-bg: #f8fbff;
    --pc-bg-soft: #f0f7ff;
    --pc-surface: #ffffff;
    --pc-surface-alt: #fbfdff;
    --pc-surface-dark: #1f6fd1;
    --pc-surface-dark-alt: #3b89ea;
    --pc-ink: #143b69;
    --pc-ink-soft: #6984a5;
    --pc-line: rgba(31, 111, 209, 0.12);
    --pc-line-strong: rgba(31, 111, 209, 0.2);
    --pc-green: #ffad33;
    --pc-green-strong: #ff7a00;
    --pc-green-soft: rgba(255, 173, 51, 0.18);
    --pc-shadow-sm: 0 16px 36px rgba(31, 111, 209, 0.08);
    --pc-shadow-md: 0 28px 64px rgba(31, 111, 209, 0.12);
    --pc-shadow-lg: 0 42px 96px rgba(18, 72, 140, 0.22);
}

body {
    background:
        radial-gradient(circle at top right, rgba(255, 173, 51, 0.14), transparent 18%),
        radial-gradient(circle at top left, rgba(59, 137, 234, 0.12), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, var(--pc-bg) 100%);
}

.site-main::before {
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 173, 51, 0.09), transparent 20%),
        radial-gradient(circle at 86% 24%, rgba(59, 137, 234, 0.08), transparent 22%);
}

.eyebrow,
.text-link,
.cookie-consent__copy .eyebrow,
.cookie-consent__copy a,
.hero-cover__content .eyebrow {
    color: var(--pc-green-strong);
}

.button,
button.button,
.promo-bar__cta {
    color: #1a2c42;
    box-shadow: 0 18px 34px rgba(255, 122, 0, 0.22);
}

.button:hover,
button.button:hover,
.promo-bar__cta:hover {
    box-shadow: 0 24px 44px rgba(255, 122, 0, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.96);
    color: var(--pc-ink);
    border-color: rgba(22, 50, 80, 0.12);
}

.button-ghost {
    color: var(--pc-ink);
    box-shadow: inset 0 0 0 1px rgba(22, 50, 80, 0.18);
}

.promo-bar {
    background:
        linear-gradient(90deg, rgba(255, 173, 51, 0.28), rgba(255, 255, 255, 0.95) 32%, rgba(248, 251, 255, 0.99) 100%);
    border-bottom: 1px solid rgba(22, 50, 80, 0.08);
}

.promo-bar__label {
    background: rgba(255, 255, 255, 0.72);
    color: var(--pc-green-strong);
}

.promo-bar__text {
    color: rgba(22, 50, 80, 0.76);
}

.site-header {
    background: rgba(31, 111, 209, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(18, 72, 140, 0.16);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgba(27, 98, 187, 0.985);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 38px rgba(18, 72, 140, 0.22);
}

.brand strong {
    color: #ffffff;
}

.brand small {
    color: rgba(255, 255, 255, 0.62);
}

.brand__mark {
    background: linear-gradient(135deg, var(--pc-green) 0%, #8fc1ff 100%);
    color: #17324f;
}

.site-nav a,
.header-link {
    color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.site-nav a.is-active,
.header-link:hover {
    color: #ffffff;
}

.site-nav a::after,
.header-link::after {
    background: linear-gradient(90deg, var(--pc-green), rgba(255, 145, 47, 0));
}

.menu-toggle {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle:hover,
.site-header.is-menu-open .menu-toggle {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
}

.menu-toggle > span:not(.sr-only) {
    background: #ffffff;
}

.cookie-consent__panel {
    border-color: rgba(22, 50, 80, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 42px rgba(59, 137, 234, 0.12);
}

.cookie-consent__copy p {
    color: rgba(22, 50, 80, 0.74);
}

.cookie-consent .button-secondary,
.cookie-consent .button-ghost {
    color: var(--pc-ink);
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(22, 50, 80, 0.12);
}

.hero--home-dynamic,
.hero--page {
    background: linear-gradient(180deg, #2c7fe2 0%, #5aa6ff 100%);
}

.hero-cover::after {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 173, 51, 0.26), transparent 18%),
        radial-gradient(circle at 68% 30%, rgba(198, 223, 255, 0.2), transparent 18%);
}

.hero-cover__image {
    filter: brightness(0.7) saturate(1.02);
}

.hero-cover__overlay {
    background:
        linear-gradient(90deg, rgba(20, 71, 135, 0.86) 0%, rgba(24, 83, 156, 0.78) 36%, rgba(33, 111, 191, 0.48) 64%, rgba(33, 111, 191, 0.16) 100%),
        linear-gradient(180deg, rgba(16, 56, 107, 0.08) 0%, rgba(16, 56, 107, 0.28) 100%);
}

.hero-cover__content .hero__lead {
    color: rgba(243, 248, 255, 0.9);
}

.hero-cover__content .page-hero__body {
    color: rgba(226, 238, 255, 0.78);
}

.hero__actions .button-secondary,
.hero__actions .button-ghost,
.hero-cover__content .button-secondary,
.hero-cover__content .button-ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.24);
}

.section--soft {
    background: linear-gradient(180deg, #f1f7ff 0%, #fbfdff 100%);
}

.hero-stage-card,
.sage-benefit-card,
.industry-card,
.testimonial-card,
.post-card,
.value-card,
.soft-panel,
.map-placeholder,
.form-card,
.prose-card,
.cta-banner,
.error-panel,
.narrative-card,
.detail-card,
.split-panel__card,
.info-card,
.industry-detail,
.customer-showcase__main,
.customer-showcase__quote,
.stats-band,
.faq-item {
    border-color: rgba(22, 50, 80, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.985));
    box-shadow: var(--pc-shadow-sm);
}

.hero-stage-card::before,
.sage-benefit-card::before,
.industry-card::before,
.testimonial-card::before,
.post-card::before,
.value-card::before,
.soft-panel::before,
.map-placeholder::before,
.prose-card::before,
.narrative-card::before,
.detail-card::before,
.split-panel__card::before,
.info-card::before,
.industry-detail::before,
.customer-showcase__main::before,
.customer-showcase__quote::before,
.stats-band::before,
.cta-banner::before,
.form-card::before,
.faq-item::before {
    background: linear-gradient(90deg, var(--pc-green-strong), rgba(255, 155, 67, 0));
}

.hero-stage-card:nth-child(2),
.customer-showcase__quote,
.stats-band,
.cta-banner,
.split-panel__card {
    border-color: rgba(158, 202, 255, 0.16);
    background: linear-gradient(155deg, #2a7de1 0%, #509ff7 100%);
    box-shadow: var(--pc-shadow-lg);
}

.hero-stage-card:nth-child(2) h3,
.hero-stage-card:nth-child(2) p,
.hero-stage-card:nth-child(2) .hero-stage-card__range,
.hero-stage-card:nth-child(2) .text-link,
.customer-showcase__quote h2,
.customer-showcase__quote h3,
.customer-showcase__quote p,
.customer-showcase__quote li,
.stats-band h2,
.stats-band h3,
.stats-band p,
.stats-band strong,
.stats-band span,
.cta-banner h2,
.cta-banner p,
.cta-banner .eyebrow {
    color: #f4f9ff;
}

.story-quote,
.hero-stage-card__range,
.faq-item__trigger span:last-child,
.sage-benefit-card__icon,
.value-card__icon,
.industry-card__icon,
.info-card__icon {
    color: var(--pc-green-strong);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: rgba(255, 122, 0, 0.42);
    box-shadow: 0 0 0 5px rgba(255, 173, 51, 0.14);
}

.mobile-menu-overlay__backdrop {
    background: rgba(18, 72, 140, 0.62);
}

.mobile-menu-panel {
    background:
        radial-gradient(circle at top right, rgba(255, 173, 51, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(34, 114, 212, 0.985) 0%, rgba(51, 136, 238, 0.99) 100%);
    border-left-color: rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(18, 72, 140, 0.28);
}

.mobile-menu-panel__head,
.mobile-menu-meta {
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu-panel__eyebrow,
.mobile-menu-nav__arrow {
    color: #ffb36d;
}

.mobile-menu-panel__title {
    color: rgba(236, 244, 255, 0.72);
}

.mobile-menu-close {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-nav__link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.mobile-menu-nav__link:hover,
.mobile-menu-nav__link:focus-visible,
.mobile-menu-actions .header-link {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.14);
}

.mobile-menu-nav__link.is-active {
    background: rgba(255, 173, 51, 0.16);
    border-color: rgba(255, 173, 51, 0.26);
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(255, 173, 51, 0.2), transparent 22%),
        linear-gradient(180deg, #236ecb 0%, #2f7ee0 56%, #1d5fb6 100%);
    color: rgba(233, 243, 255, 0.8);
}

.footer-copy {
    color: rgba(233, 243, 255, 0.84);
}

.site-footer a,
.site-footer .footer-links a {
    color: rgba(242, 247, 255, 0.92);
}

.site-footer h4,
.site-footer strong,
.site-footer a:hover {
    color: #ffffff;
}

.footer-socials a {
    border-color: rgba(162, 203, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.site-footer__bottom {
    border-top-color: rgba(162, 203, 255, 0.14);
}

.site-footer .footer-links--contact strong {
    color: #ffb36d;
}

.site-footer .footer-links--contact a:hover {
    color: #ffffff;
}

@media (max-width: 920px) {
    .promo-bar {
        background: linear-gradient(180deg, rgba(255, 173, 51, 0.22) 0%, rgba(248, 251, 255, 0.99) 100%);
    }
}
