:root {
    color-scheme: light;
    --ink: #0d1326;
    --muted: #64748b;
    --line: #D8E7F4;
    --panel: #ffffff;
    --primary: #0084FF;
    --primary-dark: #005FE6;
    --accent: #16D6F7;
    --violet: #8B5CF6;
    --mint: #10B981;
    --gold: #BAE6FD;
    --night: #0d1326;
    --warm: #F4FAFF;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #ffffff 0%, #F6FBFF 42%, #FBFDFF 100%);
}

a { color: inherit; text-decoration: none; }

.page {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    isolation: isolate;
}

.nav::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-bottom: 1px solid rgba(122, 140, 165, .2);
    background: rgba(255, 255, 255, .9);
    box-shadow:
        0 14px 34px rgba(15, 23, 42, .045),
        0 0 0 100vmax rgba(255, 255, 255, .88);
    clip-path: inset(0 -100vmax);
    backdrop-filter: blur(18px);
    pointer-events: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 850;
}

.brand-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 132, 255, .24));
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-link {
    border-radius: 999px;
    padding: 8px 11px;
    color: #4f5969;
    font-size: 14px;
    font-weight: 750;
    transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #005FE6;
    background: rgba(0, 132, 255, .13);
}

.nav-actions,
.hero-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(122, 140, 165, .28);
    border-radius: 8px;
    padding: 3px;
    background: #fff;
}

.language-link {
    min-height: 32px;
    border-radius: 6px;
    padding: 7px 9px;
    color: #4f5969;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.language-link:hover,
.language-link.is-active {
    color: #06172f;
    background: rgba(0, 132, 255, .16);
}

.language-short {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 140, 165, .28);
    border-radius: 8px;
    padding: 0 16px;
    color: var(--ink);
    background: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.button.primary {
    border-color: var(--primary);
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 14px 28px rgba(0, 132, 255, .24);
}

.button.primary:hover {
    border-color: var(--accent);
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, #0094FF 100%);
    box-shadow: 0 18px 34px rgba(22, 214, 247, .22);
}

.button:hover {
    border-color: #a9b4c4;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .07);
    transform: translateY(-1px);
}

.button:focus-visible {
    outline: 3px solid rgba(0, 132, 255, .24);
    outline-offset: 3px;
}

.button.compact { min-height: 38px; padding: 0 12px; }

.subpage-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
    padding: clamp(34px, 5vw, 70px) 0 42px;
}

.subpage-hero.compact {
    display: block;
    max-width: 880px;
    padding-bottom: 28px;
}

.eyebrow {
    color: #0084FF;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.subpage-title {
    max-width: 820px;
    margin: 14px 0 16px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.subpage-lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.hero-note {
    border: 1px solid rgba(0, 132, 255, .26);
    border-radius: 8px;
    padding: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 24px 70px rgba(23, 32, 51, .08);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hero-note:hover {
    border-color: rgba(0, 132, 255, .34);
    box-shadow: 0 30px 82px rgba(23, 32, 51, .1);
    transform: translateY(-1px);
}

.hero-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
}

.hero-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.hero-note .optional-assistance-note {
    margin-top: 10px;
    color: #7c8798;
    font-size: 13px;
    line-height: 1.5;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0 72px;
}

.card,
.info-card,
.legal-card,
.faq-card,
.cta-strip {
    border: 1px solid rgba(122, 140, 165, .24);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(13, 19, 38, .055);
}

.card,
.info-card,
.faq-card,
.cta-strip {
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.card:hover,
.info-card:hover,
.faq-card:hover,
.cta-strip:hover {
    border-color: rgba(0, 132, 255, .28);
    box-shadow: 0 24px 58px rgba(13, 19, 38, .075);
}

.card,
.info-card,
.legal-card {
    padding: clamp(20px, 3vw, 28px);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-alert {
    margin: 18px 0;
    border: 1px solid rgba(22, 163, 74, .22);
    border-radius: 8px;
    padding: 12px 14px;
    color: #166534;
    background: #f0fdf4;
    font-size: 14px;
    line-height: 1.5;
}

.fast-path-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 18px 0 22px;
    border: 1px solid rgba(0, 132, 255, .24);
    border-radius: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #F4FAFF 0%, #ffffff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.fast-path-card:hover {
    border-color: rgba(0, 132, 255, .34);
    box-shadow: 0 14px 34px rgba(0, 132, 255, .08);
    transform: translateY(-1px);
}

.fast-path-card strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
}

.fast-path-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.fast-path-card .button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-honeypot * {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field.full { grid-column: 1 / -1; }

label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 13px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

textarea {
    min-height: 138px;
    padding-top: 12px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 132, 255, .2);
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(0, 132, 255, .08);
}

.contact-intents {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.contact-intents span {
    border: 1px solid rgba(0, 132, 255, .22);
    border-radius: 999px;
    padding: 7px 10px;
    color: #005FE6;
    background: rgba(244, 250, 255, .8);
    font-size: 12px;
    font-weight: 850;
}

.trust-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.trust-item {
    border: 1px solid rgba(0, 132, 255, .2);
    border-radius: 8px;
    padding: 13px;
    background: rgba(244, 250, 255, .62);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.trust-item:hover {
    border-color: rgba(0, 132, 255, .3);
    background: rgba(244, 250, 255, .86);
    transform: translateY(-1px);
}

.trust-item strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
}

.trust-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.form-helper {
    grid-column: 1 / -1;
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.error {
    margin-top: 6px;
    color: #b91c1c;
    font-size: 13px;
    line-height: 1.45;
}

.side-stack {
    display: grid;
    gap: 14px;
}

.info-list {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.info-item span {
    display: block;
    margin-bottom: 4px;
    color: #0084FF;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.info-item strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.45;
}

.faq-card {
    padding: 20px;
}

.faq-card h2,
.info-card h2,
.card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.faq-list details {
    border-top: 1px solid #edf0f5;
    padding-top: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 850;
}

.faq-list p,
.card > p,
.info-card > p,
.legal-card p,
.legal-card li {
    color: var(--muted);
    line-height: 1.65;
}

.faq-list p {
    margin: 8px 0 0;
    font-size: 14px;
}

.cta-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 14px;
    border-color: rgba(0, 132, 255, .3);
    padding: 18px;
    background: linear-gradient(90deg, #F4FAFF 0%, #ffffff 100%);
}

.cta-strip img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 132, 255, .22));
}

.cta-strip h2 {
    margin: 0 0 4px;
    font-size: 21px;
}

.cta-strip p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0 72px;
}

.legal-nav {
    position: sticky;
    top: 18px;
    border: 1px solid rgba(0, 132, 255, .24);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, .76);
}

.legal-nav strong {
    display: block;
    margin-bottom: 10px;
}

.legal-nav a {
    display: block;
    border-radius: 8px;
    padding: 8px 9px;
    color: #596273;
    font-size: 14px;
    font-weight: 750;
}

.legal-nav a:hover {
    color: #005FE6;
    background: rgba(0, 132, 255, .12);
}

.legal-card {
    display: grid;
    gap: 24px;
}

.legal-section {
    scroll-margin-top: 24px;
}

.legal-section h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.legal-section p {
    margin: 0;
}

.legal-section ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding-left: 20px;
}

.features-hero {
    padding-bottom: 30px;
}

.features-hero > *,
.feature-section > * {
    min-width: 0;
}

.feature-hero-card {
    border: 1px solid rgba(0, 132, 255, .24);
    border-radius: 8px;
    padding: clamp(20px, 3vw, 28px);
    background:
        linear-gradient(135deg, rgba(244, 250, 255, .96), rgba(255, 255, 255, .96)),
        linear-gradient(90deg, rgba(139, 92, 246, .16), rgba(196, 181, 253, .12));
    box-shadow: 0 24px 70px rgba(23, 32, 51, .08);
}

.feature-hero-card strong {
    display: block;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
}

.feature-hero-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.feature-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: 22px;
    border: 1px solid rgba(0, 132, 255, .14);
    border-radius: 8px;
    background: rgba(0, 132, 255, .14);
}

.feature-hero-metrics div {
    min-width: 0;
    padding: 14px;
    background: rgba(255, 255, 255, .8);
}

.feature-hero-metrics span,
.feature-hero-metrics small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feature-hero-metrics span {
    color: #005FE6;
    font-size: 19px;
    font-weight: 950;
}

.feature-hero-metrics small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.feature-map {
    position: sticky;
    top: 90px;
    z-index: 12;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    border: 1px solid rgba(122, 140, 165, .22);
    border-radius: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
    backdrop-filter: blur(16px);
}

.feature-map a {
    border: 1px solid rgba(0, 132, 255, .18);
    border-radius: 999px;
    padding: 8px 11px;
    color: #005FE6;
    background: rgba(244, 250, 255, .74);
    font-size: 13px;
    font-weight: 850;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.feature-map a:hover {
    border-color: rgba(0, 132, 255, .32);
    background: #ffffff;
    transform: translateY(-1px);
}

.feature-story {
    display: grid;
    gap: clamp(24px, 4vw, 42px);
}

.printer-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    margin: 0 0 clamp(28px, 5vw, 52px);
    overflow: hidden;
    border: 1px solid rgba(113, 145, 132, .2);
    border-radius: 14px;
    padding: clamp(14px, 2.4vw, 24px);
    background: linear-gradient(135deg, rgba(250, 248, 243, .96), rgba(243, 249, 247, .94));
    box-shadow: 0 22px 60px rgba(48, 67, 62, .08);
}

.printer-feature-media {
    overflow: hidden;
    border-radius: 10px;
    background: #eee8de;
}

.printer-feature-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.printer-feature-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
}

.printer-feature-copy > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.printer-feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 14px;
    padding: 0;
    list-style: none;
}

.printer-feature-points li {
    border: 1px solid rgba(113, 145, 132, .24);
    border-radius: 999px;
    padding: 8px 11px;
    color: #385c50;
    background: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
}

.printer-feature-copy .printer-compatibility {
    border-left: 3px solid rgba(113, 145, 132, .4);
    padding-left: 12px;
    color: #65756f;
    font-size: 13px;
    line-height: 1.55;
}

.feature-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: clamp(22px, 4vw, 48px);
    align-items: center;
    scroll-margin-top: 156px;
    border: 1px solid rgba(122, 140, 165, .2);
    border-radius: 8px;
    padding: clamp(16px, 2.7vw, 26px);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 54px rgba(13, 19, 38, .055);
}

.feature-section:nth-child(even) .feature-section-media {
    order: 2;
}

.feature-section-media {
    overflow: hidden;
    border: 1px solid rgba(0, 132, 255, .18);
    border-radius: 8px;
    background: #F4FAFF;
    box-shadow: 0 18px 44px rgba(0, 132, 255, .08);
}

.feature-section-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.feature-section-media--flowpilot {
    padding: clamp(14px, 2.2vw, 22px);
    background:
        linear-gradient(135deg, rgba(0, 132, 255, .08), rgba(22, 214, 247, .12)),
        #F4FAFF;
}

.feature-flowpilot-visual {
    display: grid;
    gap: 14px;
    min-height: clamp(330px, 34vw, 430px);
}

.feature-flowpilot-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.feature-flowpilot-top div,
.feature-flowpilot-panel,
.feature-flowpilot-path div,
.feature-flowpilot-step div,
.feature-flowpilot-review {
    min-width: 0;
}

.feature-flowpilot-top span,
.feature-flowpilot-label {
    display: block;
    color: #0084FF;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    line-height: 1.1;
    text-transform: uppercase;
}

.feature-flowpilot-top strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.05;
}

.feature-flowpilot-top b {
    flex: 0 0 auto;
    border: 1px solid rgba(0, 132, 255, .24);
    border-radius: 999px;
    padding: 7px 10px;
    color: #005FE6;
    background: rgba(255, 255, 255, .88);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.feature-flowpilot-body {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
    grid-template-areas:
        "paths steps"
        "review review";
    gap: 12px;
}

.feature-flowpilot-panel,
.feature-flowpilot-review {
    border: 1px solid rgba(122, 140, 165, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 32px rgba(13, 19, 38, .055);
}

.feature-flowpilot-panel {
    display: grid;
    gap: 9px;
    padding: 10px;
}

.feature-flowpilot-panel--paths {
    grid-area: paths;
}

.feature-flowpilot-panel--steps {
    grid-area: steps;
}

.feature-flowpilot-path,
.feature-flowpilot-step {
    display: grid;
    gap: 9px;
    align-items: start;
    border: 1px solid rgba(0, 132, 255, .14);
    border-radius: 8px;
    background: rgba(244, 250, 255, .72);
}

.feature-flowpilot-path {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 10px;
}

.feature-flowpilot-path.is-active {
    border-color: rgba(0, 132, 255, .46);
    background:
        linear-gradient(135deg, rgba(0, 132, 255, .12), rgba(16, 185, 129, .08)),
        #ffffff;
}

.feature-flowpilot-path span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    color: #005FE6;
    background: #E0F2FE;
    font-size: 12px;
    font-weight: 950;
}

.feature-flowpilot-path strong,
.feature-flowpilot-step strong,
.feature-flowpilot-review strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.feature-flowpilot-path small,
.feature-flowpilot-step small {
    display: block;
    margin-top: 3px;
    color: #55657a;
    font-size: 11px;
    font-weight: 720;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.feature-flowpilot-step {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 9px 10px;
}

.feature-flowpilot-step i {
    display: block;
    margin-top: 5px;
    border-radius: 999px;
    width: 26px;
    height: 4px;
    background: linear-gradient(90deg, #0084FF, #16D6F7);
}

.feature-flowpilot-review {
    grid-area: review;
    border-color: rgba(16, 185, 129, .26);
    padding: 12px;
    background: rgba(236, 253, 245, .82);
}

.feature-flowpilot-review .feature-flowpilot-label {
    color: #047857;
}

.feature-flowpilot-review strong {
    margin-top: 6px;
    color: #14532d;
    font-size: 13px;
    line-height: 1.4;
}

.feature-section-copy h2,
.feature-principles h2 {
    margin: 10px 0 10px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
}

.feature-section-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.feature-bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.feature-bullets li {
    border: 1px solid rgba(0, 132, 255, .16);
    border-radius: 8px;
    padding: 10px 11px;
    color: #334155;
    background: rgba(244, 250, 255, .56);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.feature-outcome {
    margin-top: 18px;
    border-left: 4px solid #16D6F7;
    border-radius: 8px;
    padding: 12px 14px;
    background: #f0fdf4;
}

.feature-outcome strong,
.feature-outcome span {
    display: block;
}

.feature-outcome strong {
    color: #166534;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-outcome span {
    margin-top: 5px;
    color: #14532d;
    line-height: 1.5;
}

.feature-principles {
    padding: 42px 0 0;
}

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

.principle-card {
    border: 1px solid rgba(122, 140, 165, .24);
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .045);
}

.principle-card span {
    display: inline-flex;
    min-width: 34px;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #005FE6;
    background: #E0F2FE;
    font-size: 12px;
    font-weight: 950;
}

.principle-card h3 {
    margin: 15px 0 8px;
    font-size: 19px;
    line-height: 1.2;
}

.principle-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.site-footer {
    color: #dbe3ef;
    background: linear-gradient(135deg, #071022 0%, #0d1326 56%, #11234a 100%);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(180px, .55fr) minmax(260px, .8fr);
    gap: clamp(24px, 5vw, 64px);
    padding: 42px 0 28px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 850;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 132, 255, .28));
}

.footer-tagline {
    margin: 16px 0 8px;
    color: #E0F2FE;
    font-size: 16px;
    font-weight: 850;
}

.footer-positioning {
    margin-bottom: 10px;
    color: #BAE6FD;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.45;
}

.footer-text,
.footer-list,
.footer-contact {
    color: #aeb9c8;
    font-size: 14px;
    line-height: 1.65;
}

.footer-heading {
    margin: 4px 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a {
    transition: color .2s ease, padding-left .2s ease;
}

.footer-list a:hover {
    color: #BAE6FD;
    padding-left: 3px;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact span {
    display: block;
    color: #E0F2FE;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-contact a:hover {
    color: #BAE6FD;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0 22px;
    color: #93a1b4;
    font-size: 13px;
}

.footer-bottom a {
    color: #E0F2FE;
    font-weight: 800;
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: #BAE6FD;
}

@media (max-width: 980px) {
    .nav {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-center {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }

    .subpage-hero,
    .content-grid,
    .legal-layout,
    .printer-feature,
    .feature-section,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .feature-section:nth-child(even) .feature-section-media {
        order: 0;
    }

    .feature-map {
        position: static;
    }

    .principle-grid {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .page {
        width: 100%;
        max-width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        overflow: hidden;
    }

    .nav {
        position: relative;
        gap: 14px;
        flex-direction: column;
        padding: 18px 0 16px;
    }

    .nav,
    .nav-actions,
    .language-switcher {
        min-width: 0;
    }

    .nav-center,
    .nav-actions,
    .hero-actions {
        width: 100%;
    }

    .nav-center {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
    }

    .nav-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .language-switcher {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
    }

    .language-link {
        flex: 1;
        min-width: 0;
        padding-right: 5px;
        padding-left: 5px;
        text-align: center;
    }

    .language-full {
        display: none;
    }

    .language-short {
        display: inline;
    }

    .nav-actions .button {
        min-width: 0;
    }

    .nav-actions > .button {
        width: 100%;
        line-height: 1.18;
    }

    .nav-link {
        min-width: 0;
        padding-right: 4px;
        padding-left: 4px;
        text-align: center;
        font-size: 12px;
    }

    .button {
        flex: 1;
        min-width: 0;
        padding-right: 10px;
        padding-left: 10px;
        text-align: center;
        white-space: normal;
    }

    .subpage-title {
        font-size: clamp(34px, 11vw, 46px);
        overflow-wrap: break-word;
    }

    .subpage-lead {
        overflow-wrap: break-word;
    }

    .features-hero .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .features-hero .button {
        width: 100%;
        flex: none;
    }

    .contact-form,
    .fast-path-card,
    .feature-bullets,
    .feature-hero-metrics,
    .cta-strip {
        grid-template-columns: 1fr;
    }

    .feature-flowpilot-visual {
        min-height: auto;
    }

    .feature-flowpilot-top {
        flex-direction: column;
    }

    .feature-flowpilot-body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "paths"
            "steps"
            "review";
    }

    .site-footer-inner {
        padding-top: 34px;
    }
}

@media (max-width: 430px) {
    .page {
        padding-right: 20px;
        padding-left: 20px;
    }
}
