/* wp-content/themes/smart-infoservice/assets/css/main.css */
@layer reset, base, components, sections, responsive, readability, company, navigation;
@layer navigation {
    :root {
        --site-header-height: 104px;
        --site-header-offset: 0px;
        scroll-padding-top: calc(var(--site-header-height) + var(--site-header-offset) + 16px);
    }
    .site-header {
        position: sticky;
        top: var(--site-header-offset);
        z-index: 40;
        width: 100%;
        padding-inline: max(var(--space), calc((100% - 1440px) / 2 + var(--space)));
        background: var(--paper);
        box-shadow: 0 1px 0 rgb(24 30 22 / .12);
    }
    :root:has(body.admin-bar) { --site-header-offset: 32px; }
    @media (max-width: 782px) {
        :root:has(body.admin-bar) { --site-header-offset: 46px; }
    }
    @media (max-width: 600px) {
        :root:has(body.admin-bar) { --site-header-offset: 0px; }
    }
    .mobile-menu:not([open]) { display: none; }
    .menu-toggle { display: none; }
    body.menu-is-open {
        position: fixed;
        top: var(--menu-scroll-top, 0);
        inset-inline: 0;
        overflow: hidden;
    }
    .mobile-menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(440px, 100%);
        height: 100%;
        height: 100dvh;
        max-width: none;
        max-height: none;
        margin: 0;
        padding: 0;
        border: 0;
        background: var(--paper);
        color: var(--ink);
        overflow-y: auto;
        overscroll-behavior: contain;
        scroll-padding-top: 86px;
    }
    .mobile-menu::backdrop { background: rgb(36 36 39 / .55); }
    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: max(20px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    }
    .mobile-menu-heading {
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--line);
        background: var(--paper);
    }
    .mobile-menu-heading h2 { font-size: 24px; font-weight: 650; letter-spacing: -.035em; }
    .menu-close {
        display: grid;
        place-items: center;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border: 1px solid var(--line);
        border-radius: 50%;
        color: var(--ink);
        background: transparent;
        cursor: pointer;
    }
    .menu-close span { font-size: 32px; line-height: 1; }
    .menu-close:hover { background: var(--accent-soft); }
    .mobile-menu .site-navigation {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin: 12px 0 24px;
        padding: 0;
    }
    .mobile-menu .site-navigation a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 54px;
        padding: 12px 10px;
        border-bottom: 1px solid var(--line);
        font-size: 20px;
        font-weight: 550;
        line-height: 1.3;
        letter-spacing: -.02em;
    }
    .mobile-menu .site-navigation a::after {
        content: "↗";
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        transform: none;
        color: var(--muted);
        font-size: 22px;
        flex-shrink: 0;
    }
    .mobile-menu .site-navigation a:hover,
    .mobile-menu .site-navigation a[aria-current="page"] { background: var(--accent-soft); border-radius: 4px; }
    .mobile-menu-contact { margin-top: auto; }
    .mobile-menu-contact p { font-size: 16px; line-height: 1.5; color: var(--muted); margin-bottom: 16px; }
    .mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 56px;
        padding: 14px 18px;
        border-radius: 6px;
        background: var(--ink);
        color: var(--accent);
        font-size: 17px;
        font-weight: 600;
    }
    .mobile-menu-cta:hover { background: #35432a; }
    .mobile-menu-phone { display: inline-flex; align-items: center; min-height: 48px; margin-top: 8px; font-size: 18px; font-weight: 600; }
    @media (max-width: 1100px) {
        :root { --site-header-height: 86px; }
        .site-header { flex-wrap: wrap; min-height: 86px; gap: 16px; }
        .site-header > .header-cta { display: none; }
        .site-header > .site-navigation,
        .js .site-header > .site-navigation { display: flex; }
        .menu-ready .menu-toggle {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 48px;
            margin-left: auto;
            padding: 10px 14px;
            border: 1px solid var(--line);
            border-radius: 6px;
            background: transparent;
            color: var(--ink);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }
        .menu-toggle:hover { background: var(--accent-soft); }
        .menu-icon { display: flex; flex-direction: column; gap: 5px; width: 20px; }
        .menu-icon i { width: 20px; height: 2px; background: currentColor; }
        .menu-icon i:nth-child(2) { width: 14px; align-self: flex-end; }
    }
    @media (max-width: 360px) {
        .site-header { gap: 8px; }
        .menu-ready .menu-toggle { padding-inline: 10px; gap: 8px; }
        .mobile-menu-panel { padding-inline: 20px; }
    }
}
@layer reset {
    *, *::before, *::after {
        box-sizing: border-box;
    }
    body, h1, h2, h3, p, ol, ul, dl, dd {
        margin: 0;
    }
    button, input, textarea {
        font: inherit;
    }
    button, summary, a {
        -webkit-tap-highlight-color: transparent;
    }
    button {
        cursor: pointer;
    }
    img, svg {
        display: block;
        max-width: 100%;
    }
    [hidden] {
        display: none !important;
    }
}
@layer readability {
    .contact-captcha {
        margin-block: 24px;
    }
    .contact-captcha .field-help {
        line-height: 1.7;
    }
    .contact-captcha .field-help a {
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .contact-phone-field,
    .contact-telegram-field {
        margin-bottom: 26px;
    }
    .label-optional {
        font-weight: 400;
    }
    .contact-channels {
        min-width: 0;
        padding: 0;
        margin: 0 0 26px;
        border: 0;
    }
    .contact-channels legend {
        padding: 0;
        font-size: var(--font-body);
        font-weight: 600;
    }
    .contact-channels .field-help {
        line-height: 1.6;
        margin-block: 8px 14px;
    }
    .contact-channel-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .contact-form label.contact-channel {
        display: flex;
        align-items: center;
        gap: 9px;
        margin: 0;
        padding: 10px 12px;
        min-height: 52px;
        border: 1px solid #7d953b;
        border-radius: 5px;
        background: #ffffff38;
        font-size: var(--font-body);
        font-weight: 500;
        cursor: pointer;
    }
    .contact-channel:has(input:checked) {
        background: var(--paper);
        border-color: var(--ink);
        box-shadow: inset 0 0 0 1px var(--ink);
    }
    .contact-channel:focus-within {
        outline: 2px solid var(--ink);
        outline-offset: 3px;
    }
    .contact-channel input {
        width: 17px;
        height: 17px;
        margin: 0;
        accent-color: var(--ink);
        flex-shrink: 0;
    }
    .contact-channel-content {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .contact-channel-icon {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
    @media (max-width: 540px) {
        .contact-channel-options {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
        }
        .contact-form label.contact-channel {
            padding: 10px 8px;
            gap: 6px;
            font-size: var(--font-small);
        }
        .contact-channel-content {
            gap: 6px;
        }
        .contact-channel-icon {
            width: 22px;
            height: 22px;
        }
    }
    .site-header {
        gap: 28px;
    }
    .site-navigation {
        gap: 22px;
    }
    .home-contact-more {
        grid-column: 1 / -1;
        font-size: var(--font-body);
        margin-top: 24px;
    }
    .home-contact-more a:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
    @media (max-width: 1100px) {
        .site-header {
            flex-wrap: wrap;
        }
        .site-navigation {
            order: 4;
            width: 100%;
            flex-wrap: wrap;
            justify-content: center;
            padding-bottom: 20px;
        }
        .js .site-navigation {
            display: none;
        }
        .js .site-navigation.is-open {
            display: flex;
        }
        .menu-toggle {
            display: block;
            margin-left: auto;
        }
        html:not(.js) .menu-toggle {
            display: none;
        }
    }
    @media (max-width: 540px) {
        .site-header {
            gap: 8px;
        }
    }
    .site-navigation a[aria-current="page"]::after {
        transform: scaleX(1);
    }
    .text-link-light {
        color: var(--accent-light);
        border-color: var(--accent-light);
        margin-top: 18px;
    }
    .about-heading > div > p {
        color: #c1c7b5;
        font-size: var(--font-body);
        line-height: 1.8;
    }
    .system-card-header, .system-card-footer, .workbench-header {
        flex-wrap: wrap;
    }
    .flow-node {
        min-height: 100px;
        padding: 12px 10px;
        gap: 8px;
    }
    .flow-node > span:nth-child(2) {
        min-width: 0;
        overflow-wrap: anywhere;
    }
    .flow-node small {
        line-height: 1.4;
    }
    .system-log p {
        flex: 1;
        min-width: 0;
    }
    .log-label {
        flex-shrink: 0;
    }
    .problem-tag {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
    .copy-visual {
        gap: 4px;
    }
    .copy-visual kbd {
        padding-inline: 4px;
    }
    .copy-visual > span {
        margin-inline: 2px;
    }
    .process-caption {
        flex-wrap: wrap;
    }
    .auto-steps li > span:last-child, .manual-steps li, .ai-copy > p:not(.eyebrow), .approach-list p, .problem-card p {
        font-size: var(--font-body);
    }
    .document-sheet > span, .document-highlight, .extracted-data > span:first-child {
        overflow-wrap: anywhere;
    }
    .extracted-data dl {
        grid-template-columns: 1fr 1.1fr;
    }
    @media (min-width: 1101px) {
        .flow-canvas {
            height: 430px;
        }
        .flow-node {
            transform: translateY(-50%);
        }
        .flow-node:hover, .flow-node[aria-pressed="true"] {
            transform: translateY(calc(-50% - 3px));
        }
        .node-site, .node-crm {
            top: 20%;
        }
        .node-documents, .node-accounting {
            top: 50%;
        }
        .node-ai, .node-report {
            top: 82.5%;
            bottom: auto;
        }
        .flow-hub {
            top: 50%;
            transform: translateY(-50%);
        }
        .flow-hub > span:last-child {
            font-size: var(--font-small);
            letter-spacing: 0;
        }
    }
    @media (max-width: 1100px) {
        .flow-canvas {
            height: auto;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 16px;
            padding: 18px 12px 24px;
        }
        .flow-canvas::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 40px;
            bottom: 75px;
            width: 1px;
            background: #a5b08f;
        }
        .flow-lines {
            display: none;
        }
        .flow-node {
            position: relative;
            inset: auto;
            width: 100%;
            padding: 12px 8px;
            gap: 7px;
        }
        .flow-node::before {
            content: "";
            position: absolute;
            top: 50%;
            height: 1px;
            width: 8px;
            background: #a5b08f;
        }
        .node-site::before, .node-documents::before, .node-ai::before {
            right: -8px;
        }
        .node-crm::before, .node-accounting::before, .node-report::before {
            left: -8px;
        }
        .flow-hub {
            position: relative;
            inset: auto;
            grid-column: 1 / -1;
            grid-row: 1;
            width: 100%;
            min-height: 44px;
            height: auto;
            aspect-ratio: auto;
            gap: 15px;
            background: var(--ink);
            color: var(--accent-light);
            box-shadow: none;
            border-color: var(--ink);
            border-radius: 5px;
        }
        .flow-hub > span:last-child {
            position: static;
        }
        .hub-mark {
            font-size: 25px;
        }
    }
    @media (max-width: 540px) {
        .site-navigation {
            flex-wrap: wrap;
            gap: 10px 24px;
        }
        .hero-actions {
            gap: 12px 20px;
        }
        .note-indent {
            padding-left: 0;
        }
        .hero-bottom {
            flex-direction: column;
            gap: 12px;
        }
        .hero-bottom > span {
            max-width: none;
        }
        .node-icon {
            display: none;
        }
        .flow-node {
            min-height: 110px;
            padding: 12px 10px;
        }
        .problem-grid {
            grid-template-columns: 1fr;
        }
        .problem-card {
            padding: 24px 0 !important;
            border-right: 0;
            border-bottom: 1px solid var(--dark-line);
        }
        .problem-card:nth-child(even) {
            padding-left: 0 !important;
        }
        .problem-card:last-child {
            border-bottom: 0;
        }
        .problem-card p {
            max-width: none;
            min-height: 0;
        }
        .problem-conclusion .round-link {
            display: none;
        }
        .process-switch button {
            padding-inline: 10px;
        }
        .process-switch button > span {
            font-size: var(--font-small);
        }
        .auto-steps {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .auto-steps li {
            order: initial;
            padding: 18px;
        }
        .auto-steps li:not(:last-child)::after {
            content: "↓";
            display: block;
            left: 50%;
            top: calc(100% + 2px);
            right: auto;
        }
        .auto-steps li:last-child::after {
            display: none;
        }
        .document-demo {
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .document-sheet {
            width: min(100%, 240px);
            padding: 22px;
        }
        .document-arrow {
            display: none;
        }
        .extracted-data {
            flex: auto;
            width: 100%;
        }
        .site-footer {
            font-size: var(--font-small);
        }
    }
}
@layer company {
    .company-hero {
        padding-top: 28px;
        padding-bottom: 40px;
    }
    .company-back {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: var(--font-small);
        color: var(--muted);
        padding-block: 8px;
    }
    .company-back:hover {
        color: var(--ink);
    }
    .company-hero-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 7%;
        align-items: center;
        margin-block: 42px 64px;
    }
    .company-intro .eyebrow {
        margin-bottom: 28px;
    }
    .company-intro h1 {
        font-size: clamp(42px, 4.8vw, 70px);
    }
    .company-lead {
        margin-block: 26px 32px;
        max-width: 580px;
        font-size: 1.125rem;
        color: var(--muted);
        line-height: 1.75;
    }
    .company-origin {
        border-left: 1px solid var(--ink);
        padding: 25px 0 25px 35px;
    }
    .company-origin > strong {
        display: flex;
        align-items: start;
        font-size: clamp(80px, 8.5vw, 128px);
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: -.07em;
        margin-top: 12px;
    }
    .company-origin > strong > span {
        font-size: 36px;
        margin-top: 20px;
        margin-left: 10px;
        color: var(--accent-ink);
    }
    .origin-caption {
        font-family: Georgia, serif;
        font-size: 28px;
        font-style: italic;
    }
    .company-origin > p {
        margin-top: 28px;
        font-size: var(--font-body);
        color: var(--muted);
        max-width: 330px;
        line-height: 1.75;
    }
    .origin-footer {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 28px;
        font-family: var(--mono);
        font-size: var(--font-small);
    }
    .company-hero-note {
        border-top: 1px solid var(--line);
        padding-top: 25px;
        font-size: var(--font-body);
        color: var(--muted);
    }
    .company-specialties h2 {
        max-width: 1000px;
    }
    .company-specialties .serif-word {
        color: var(--accent-light);
    }
    .specialty-list {
        margin-top: 55px;
        border-top: 1px solid var(--dark-line);
    }
    .specialty-item {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 40px;
        padding-block: 35px;
        border-bottom: 1px solid var(--dark-line);
    }
    .specialty-number {
        font-family: var(--mono);
        font-size: var(--font-small);
        color: #b8c4a2;
        margin-top: 8px;
    }
    .specialty-item h3 {
        font-size: clamp(24px, 2.5vw, 34px);
        font-weight: 500;
        letter-spacing: -.04em;
        line-height: 1.25;
        margin-bottom: 18px;
    }
    .specialty-item p {
        font-size: 1.125rem;
        color: #c1c7b5;
        line-height: 1.8;
        max-width: 770px;
    }
    .specialty-item ul {
        padding-left: 20px;
        margin-top: 18px;
        font-size: var(--font-body);
        color: #c1c7b5;
    }
    .specialty-item li {
        padding-block: 4px;
    }
    .specialty-item li::marker {
        color: var(--accent-light);
    }
    .specialty-note {
        margin-top: 30px;
        color: #c1c7b5;
        font-size: var(--font-body);
        max-width: 770px;
    }
    .company-principles-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 8%;
    }
    .principles-intro {
        color: var(--muted);
        font-size: 1.125rem;
        line-height: 1.8;
        max-width: 430px;
        margin-top: 28px;
    }
    .principle-list {
        list-style: none;
        padding: 0;
    }
    .principle-list li {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 20px;
        border-top: 1px solid var(--line);
        padding-block: 23px;
    }
    .principle-list li > span {
        font-family: var(--mono);
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 5px;
    }
    .principle-list h3 {
        font-size: 22px;
        line-height: 1.3;
        letter-spacing: -.035em;
        font-weight: 500;
    }
    .principle-list p {
        color: var(--muted);
        font-size: var(--font-body);
        margin-top: 12px;
        line-height: 1.75;
    }
    .company-next {
        background: var(--accent);
        padding-block: var(--section-space);
    }
    .company-next-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
    .company-next .eyebrow {
        margin-bottom: 28px;
    }
    .company-next p:not(.eyebrow) {
        margin-top: 24px;
        font-size: var(--font-body);
        line-height: 1.8;
    }
    .company-next .button {
        flex-shrink: 0;
    }
    @media (max-width: 1100px) {
        .company-hero-grid {
            gap: 5%;
        }
        .company-origin {
            padding-left: 25px;
        }
        .specialty-item {
            grid-template-columns: 205px 1fr;
            gap: 25px;
        }
        .company-principles-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .principles-intro {
            max-width: 640px;
        }
    }
    @media (max-width: 850px) {
        .company-hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-block: 30px 40px;
        }
        .company-origin {
            padding: 25px;
            border: 1px solid var(--line);
            border-left: 3px solid var(--accent);
        }
        .company-origin > strong {
            font-size: 90px;
        }
        .company-origin > p {
            max-width: 500px;
        }
        .company-next-grid {
            align-items: start;
            flex-direction: column;
        }
    }
    @media (max-width: 540px) {
        .company-hero {
            padding-top: 12px;
        }
        .company-intro h1 {
            font-size: clamp(36px, 9.2vw, 48px);
        }
        .company-lead {
            font-size: var(--font-body);
        }
        .company-intro .button, .company-next .button {
            width: 100%;
            gap: 15px;
        }
        .company-origin {
            padding: 22px;
        }
        .company-origin > strong {
            font-size: 80px;
        }
        .company-specialties h2 {
            font-size: 34px;
        }
        .specialty-list {
            margin-top: 35px;
        }
        .specialty-item {
            grid-template-columns: 1fr;
            gap: 20px;
            padding-block: 28px;
        }
        .specialty-item p {
            font-size: var(--font-body);
        }
        .principle-list li {
            grid-template-columns: 24px 1fr;
            gap: 14px;
        }
        .principle-list h3 {
            font-size: 21px;
        }
    }
}
@layer base {
    :root {
        --paper: #f5f5ed;
        --ink: #22251f;
        --muted: #66695e;
        --line: #d8dbcf;
        --accent: #d5f65b;
        --accent-strong: #22251f;
        --accent-hover: #3c4430;
        --accent-contrast: #22251f;
        --accent-ink: #597720;
        --accent-light: #d5f65b;
        --accent-soft: #e7edd5;
        --surface: #edefe4;
        --surface-light: #f8faf0;
        --dark: #242720;
        --dark-line: #45483c;
        --radius: 12px;
        --space: clamp(24px, 5vw, 80px);
        --section-space: clamp(64px, 8vw, 112px);
        --font: "Segoe UI", Arial, sans-serif;
        --mono: "Consolas", "Courier New", monospace;
        --font-small: .875rem;
        --font-body: 1rem;
    }
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 30px;
    }
    body {
        background: var(--paper);
        color: var(--ink);
        font-family: var(--font);
        font-size: var(--font-body);
        line-height: 1.55;
        -webkit-font-smoothing: antialiased;
    }
    a {
        color: inherit;
        text-decoration: none;
    }
    button {
        color: inherit;
    }
    ::selection {
        background: var(--accent-soft);
        color: var(--ink);
    }
    :focus-visible {
        outline: 3px solid var(--accent-ink);
        outline-offset: 5px;
    }
    .section-dark :focus-visible {
        outline-color: var(--accent-light);
    }
    h1, h2, h3 {
        font-weight: 600;
    }
    h1, h2 {
        line-height: 1.08;
        letter-spacing: -.065em;
    }
    h2 {
        font-size: clamp(36px, 4.7vw, 68px);
    }
    .shell {
        width: min(1440px, 100%);
        padding-inline: var(--space);
        margin-inline: auto;
    }
    .section-space {
        padding-block: var(--section-space);
    }
    .section-dark {
        background: var(--dark);
        color: var(--paper);
    }
    .eyebrow, .micro-label {
        font-family: var(--mono);
        font-size: var(--font-small);
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: .075em;
    }
    .eyebrow {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .serif-word {
        font-family: Georgia, "Times New Roman", serif;
        font-style: italic;
        font-weight: 400;
    }
    .muted {
        color: #a5ab96;
    }
    .section-heading {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        margin-bottom: 38px;
    }
    .section-title-row {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        align-items: end;
        margin-bottom: 48px;
    }
    .section-title-row > p {
        color: var(--muted);
        font-size: var(--font-body);
        width: 270px;
    }
    .skip-link {
        position: fixed;
        z-index: 50;
        left: 20px;
        top: -80px;
        background: var(--ink);
        color: var(--paper);
        padding: 12px 20px;
    }
    .skip-link:focus {
        top: 20px;
    }
    .content-page {
        padding-block: 80px;
        min-height: 65vh;
    }
    .content-page article {
        margin-bottom: 40px;
    }
    .content-page h1 {
        font-size: 48px;
        margin-bottom: 24px;
    }
    .content-page p {
        margin-block: 20px;
    }
    .comments-area {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--line);
    }
    .comments-area h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }
    .comment-list {
        padding-left: 24px;
    }
    .comment-list li {
        padding-block: 18px;
    }
    .comment-form label {
        display: block;
        font-size: var(--font-body);
    }
    .comment-form input:not([type="checkbox"]), .comment-form textarea {
        max-width: 100%;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 4px;
        background: var(--paper);
    }
    .comment-form .submit {
        cursor: pointer;
    }
}
@layer components {
    .button {
        min-height: 54px;
        padding: 15px 24px;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        gap: 32px;
        border: 1px solid transparent;
        border-radius: 6px;
        font-size: var(--font-body);
        font-weight: 600;
        transition: background .2s, transform .2s;
    }
    .button span {
        font-size: 23px;
        line-height: 1;
    }
    .button-dark {
        background: var(--ink);
        color: var(--paper);
    }
    .button-dark:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
    }
    .button:disabled {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }
    .text-link {
        display: inline-flex;
        align-items: center;
        gap: 22px;
        font-size: var(--font-body);
        font-weight: 600;
        border-bottom: 1px solid var(--ink);
        padding-block: 9px;
    }
    .text-link:hover {
        border-bottom-color: transparent;
    }
    .text-link span {
        font-size: 20px;
    }
    .status-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #456c34;
        flex-shrink: 0;
    }
    .status-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        border: 1px solid var(--line);
        border-radius: 30px;
        padding: 5px 10px;
        font-size: var(--font-small);
    }
    .tiny-square {
        display: inline-block;
        margin-left: 8px;
        background: var(--accent-light);
        width: 6px;
        height: 6px;
    }
    .round-link {
        border: 1px solid var(--dark-line);
        border-radius: 50%;
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        font-size: 24px;
        flex-shrink: 0;
        transition: background .2s, color .2s;
    }
    .round-link:hover {
        background: var(--accent-soft);
        color: var(--ink);
    }
}
@layer sections {
    .site-header {
        min-height: 104px;
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: space-between;
    }
    .brand {
        display: flex;
        gap: 11px;
        align-items: center;
        font-weight: 800;
        font-size: 31px;
        letter-spacing: -.065em;
        line-height: .9;
    }
    .brand-sub {
        display: block;
        font-size: var(--font-small);
        font-weight: 500;
        letter-spacing: .018em;
        line-height: 1.6;
    }
    .brand-symbol {
        width: 33px;
        height: 38px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        transform: skewY(-12deg);
    }
    .brand-symbol i {
        height: 7px;
        width: 28px;
        background: var(--ink);
        border-radius: 1px;
    }
    .brand-symbol i:nth-child(2) {
        width: 19px;
        background: #88a02c;
        margin-left: 9px;
    }
    .site-navigation {
        display: flex;
        gap: 30px;
        margin-left: auto;
    }
    .site-navigation a {
        font-size: var(--font-small);
        position: relative;
        padding-block: 8px;
    }
    .site-navigation a::after {
        content: "";
        height: 1px;
        background: var(--ink);
        position: absolute;
        bottom: 4px;
        left: 0;
        right: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s;
    }
    .site-navigation a:hover::after {
        transform: scaleX(1);
    }
    .header-cta {
        display: flex;
        gap: 32px;
        align-items: center;
        border: 1px solid var(--ink);
        border-radius: 6px;
        font-size: var(--font-small);
        font-weight: 600;
        padding: 10px 16px;
        transition: background .2s;
    }
    .header-cta span {
        font-size: 19px;
    }
    .header-cta:hover {
        background: var(--accent);
        color: var(--accent-contrast);
    }
    .menu-toggle {
        display: none;
        border: 0;
        background: transparent;
        font-size: var(--font-body);
        padding: 12px;
    }
    .hero {
        display: grid;
        grid-template-columns: 1.08fr 1fr;
        column-gap: 4%;
        align-items: center;
        padding-top: 52px;
        padding-bottom: 25px;
    }
    .hero-copy {
        padding-bottom: 35px;
    }
    .hero .eyebrow {
        margin-bottom: 29px;
    }
    .hero h1 {
        font-size: clamp(45px, 4.8vw, 72px);
        letter-spacing: -.06em;
        line-height: 1.1;
    }
    .word-highlight {
        position: relative;
        display: inline-block;
        z-index: 0;
    }
    .word-highlight::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: -3px;
        right: -4px;
        height: 14px;
        background: var(--accent);
        z-index: -1;
        transform: rotate(-1deg);
    }
    .highlight-dot {
        color: var(--accent-ink);
    }
    .hero-description {
        margin-top: 27px;
        font-size: 17px;
        line-height: 1.7;
        max-width: 390px;
        color: var(--muted);
    }
    .hero-actions {
        display: flex;
        align-items: center;
        gap: 27px;
        margin-top: 32px;
    }
    .hero-actions .text-link {
        border-bottom: 0;
        font-size: var(--font-small);
    }
    .hero-note {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 28px;
        line-height: 1.75;
    }
    .hero-note > span:first-child {
        font-size: 18px;
        margin-right: 7px;
    }
    .note-indent {
        padding-left: 22px;
    }
    .hero-bottom {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        margin-top: 54px;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--mono);
        font-size: var(--font-small);
        letter-spacing: .02em;
        color: var(--muted);
    }
    .hero-bottom a {
        display: flex;
        gap: 34px;
        align-items: center;
    }
    .hero-bottom a span {
        font-size: 20px;
    }
    .system-card {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        overflow: hidden;
        transform: rotate(1deg);
        box-shadow: 0 10px 0 -5px #e2e5d7;
    }
    .system-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 19px 20px;
        border-bottom: 1px solid var(--line);
    }
    .system-card-header .micro-label {
        font-size: var(--font-small);
        letter-spacing: .02em;
    }
    .system-live {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: var(--mono);
        font-size: var(--font-small);
    }
    .system-live .status-dot {
        width: 5px;
        height: 5px;
    }
    .flow-canvas {
        position: relative;
        height: 355px;
        background-image: radial-gradient(var(--line) .7px, transparent .7px);
        background-size: 16px 16px;
    }
    .flow-lines {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .flow-lines path {
        stroke: #a5b08f;
        stroke-width: 1.3;
    }
    .flow-lines .flow-packet {
        stroke: #55782b;
        stroke-width: 2.5;
        stroke-dasharray: 4 150;
        animation: data-flow 9s linear infinite;
    }
    .flow-node {
        position: absolute;
        width: 37%;
        min-height: 69px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 7px;
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 12px;
        text-align: left;
        transition: border-color .2s, transform .2s, background .2s;
    }
    .flow-node:hover, .flow-node[aria-pressed="true"] {
        border-color: #5c7338;
        background: #faffdf;
        transform: translateY(-3px);
    }
    .flow-node > span:nth-child(2) {
        font-size: var(--font-small);
        font-weight: 600;
        line-height: 1.4;
    }
    .flow-node small {
        display: block;
        font-size: var(--font-small);
        font-weight: 400;
        color: var(--muted);
        margin-top: 3px;
    }
    .node-icon {
        font-size: 22px;
        width: 25px;
        flex-shrink: 0;
        font-family: Arial, sans-serif;
    }
    .flow-node i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #7a9b41;
        margin-left: auto;
        flex-shrink: 0;
    }
    .node-site {
        left: 6%;
        top: 9%;
    }
    .node-crm {
        right: 6%;
        top: 9%;
    }
    .node-documents {
        left: 3%;
        top: 43%;
    }
    .node-accounting {
        right: 3%;
        top: 43%;
    }
    .node-ai {
        left: 6%;
        bottom: 8%;
    }
    .node-report {
        right: 6%;
        bottom: 8%;
    }
    .flow-hub {
        position: absolute;
        left: 43%;
        top: 42%;
        width: 14%;
        aspect-ratio: 1;
        background: var(--accent);
        border: 1px solid var(--accent);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 0 6px #edf0df;
    }
    .hub-mark {
        font-size: 42px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -.06em;
    }
    .hub-mark > span {
        font-size: 23px;
    }
    .flow-hub > span:last-child {
        position: absolute;
        top: calc(100% + 10px);
        font-family: var(--mono);
        font-size: var(--font-small);
        letter-spacing: .08em;
    }
    .system-log {
        margin: 0 19px;
        padding: 13px 12px;
        display: flex;
        align-items: center;
        gap: 11px;
        background: #e0e8c9;
        border: 1px solid #cad7ab;
        border-radius: 6px;
        min-height: 66px;
    }
    .log-check {
        font-size: 20px;
        color: var(--accent-ink);
    }
    .system-log p {
        font-size: var(--font-small);
        font-weight: 600;
    }
    .system-log p span {
        display: block;
        font-size: var(--font-small);
        font-weight: 400;
        margin-top: 4px;
        color: var(--muted);
    }
    .log-label {
        margin-left: auto;
        font-family: var(--mono);
        font-size: var(--font-small);
        color: var(--muted);
    }
    .system-card-footer {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        font-size: var(--font-small);
        color: var(--muted);
    }
    .system-card-footer .micro-label {
        font-size: var(--font-small);
        color: var(--ink);
    }
    .system-card-footer .micro-label span {
        margin-inline: 7px;
    }
    .problems {
        margin-top: 26px;
    }
    .problems .section-space {
        padding-top: 66px;
        padding-bottom: 48px;
    }
    .problem-heading {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 30px;
        margin-bottom: 52px;
    }
    .problem-heading h2 {
        font-size: clamp(35px, 4.5vw, 65px);
    }
    .problem-heading p {
        color: #c1c7b5;
        font-size: 18px;
        width: 265px;
    }
    .problem-heading h2 .muted br {
        display: none;
    }
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid var(--dark-line);
        border-bottom: 1px solid var(--dark-line);
    }
    .problem-card {
        padding: 23px 24px 27px;
        position: relative;
        border-right: 1px solid var(--dark-line);
    }
    .problem-card:first-child {
        padding-left: 0;
    }
    .problem-card:last-child {
        border-right: 0;
        padding-right: 0;
    }
    .problem-number {
        color: #a5ab96;
        font-family: var(--mono);
        font-size: var(--font-small);
    }
    .problem-card h3 {
        margin-bottom: 12px;
        font-size: 19px;
        letter-spacing: -.03em;
    }
    .problem-card p {
        font-size: var(--font-small);
        line-height: 1.7;
        color: #c1c7b5;
        max-width: 240px;
        min-height: 66px;
    }
    .problem-tag {
        display: inline-block;
        margin-top: 22px;
        font-size: var(--font-small);
        font-family: var(--mono);
        color: #a5b095;
        border: 1px solid var(--dark-line);
        border-radius: 3px;
        padding: 3px 6px;
        letter-spacing: .05em;
    }
    .copy-visual, .file-visual, .sync-visual, .tabs-visual {
        height: 72px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
        color: #d6dacb;
    }
    .copy-visual kbd {
        border: 1px solid #697056;
        border-bottom-width: 3px;
        font-size: var(--font-small);
        padding: 5px 7px;
        border-radius: 4px;
    }
    .copy-visual > span {
        margin-inline: 4px;
        color: var(--accent-light);
    }
    .file-visual {
        font-family: var(--mono);
        font-size: var(--font-small);
        gap: 10px;
    }
    .file-visual > span {
        color: var(--accent-light);
        font-size: 28px;
    }
    .sync-visual {
        gap: 16px;
        font-family: var(--mono);
        font-size: 26px;
    }
    .sync-visual > span:nth-child(2) {
        color: var(--accent-light);
        font-size: 22px;
    }
    .tabs-visual i {
        display: block;
        width: 30px;
        height: 25px;
        border: 1px solid #748064;
        border-radius: 5px 5px 0 0;
        transform: skewX(-9deg);
    }
    .tabs-visual i:nth-child(2) {
        margin-left: -12px;
    }
    .tabs-visual i:nth-child(3) {
        margin-left: -12px;
    }
    .tabs-visual span {
        font-family: var(--mono);
        font-size: var(--font-body);
        margin-left: 6px;
        color: var(--accent-light);
    }
    .problem-conclusion {
        display: flex;
        gap: 24px;
        align-items: center;
        padding-top: 36px;
    }
    .lime-arrow {
        color: var(--accent-light);
        font-size: 44px;
    }
    .problem-conclusion p {
        font-size: clamp(24px, 3.2vw, 43px);
        font-weight: 500;
        letter-spacing: -.045em;
    }
    .problem-conclusion p span {
        color: var(--accent-light);
    }
    .problem-conclusion .round-link {
        margin-left: auto;
    }
    .service-list {
        border-top: 1px solid var(--ink);
    }
    .service-item {
        border-bottom: 1px solid var(--line);
    }
    .service-item summary {
        list-style: none;
        display: grid;
        grid-template-columns: 185px 1fr 32px;
        gap: 20px;
        align-items: center;
        cursor: pointer;
        padding: 28px 8px 28px 0;
        transition: background .2s;
    }
    .service-item summary::-webkit-details-marker {
        display: none;
    }
    .service-item summary:hover {
        background: var(--surface);
    }
    .service-code {
        font-size: var(--font-small);
        font-family: var(--mono);
        color: var(--muted);
        letter-spacing: .035em;
    }
    .service-code > span {
        color: var(--ink);
        margin-right: 10px;
    }
    .service-item h3 {
        font-size: clamp(20px, 2vw, 29px);
        letter-spacing: -.04em;
        font-weight: 500;
    }
    .service-plus {
        text-align: center;
        font-size: 28px;
        font-weight: 300;
        transition: transform .2s;
    }
    .service-item[open] .service-plus {
        transform: rotate(45deg);
    }
    .service-detail {
        margin-left: 205px;
        padding-bottom: 30px;
        max-width: 640px;
    }
    .service-detail > p {
        font-size: var(--font-body);
        color: var(--muted);
    }
    .service-detail .service-example {
        margin-top: 13px;
        font-size: var(--font-body);
        color: var(--ink);
    }
    .service-detail .text-link {
        margin-top: 15px;
    }
    .section-footnote {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 27px;
        line-height: 1.8;
    }
    .solutions {
        background: var(--surface);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    .process-switch {
        display: flex;
        background: #dbe1cb;
        border-radius: 8px;
        padding: 5px;
        width: fit-content;
        margin-bottom: 24px;
        gap: 3px;
    }
    .process-switch button {
        border: 0;
        background: transparent;
        border-radius: 5px;
        padding: 11px 18px;
        font-size: var(--font-body);
        font-weight: 600;
        display: flex;
        gap: 25px;
        align-items: center;
    }
    .process-switch button > span {
        font-size: var(--font-small);
        font-weight: 400;
    }
    .process-switch button[aria-pressed="true"] {
        background: var(--ink);
        color: var(--paper);
    }
    .process-panels {
        display: grid;
        gap: 24px;
    }
    .process-panel {
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 28px 32px;
        background: var(--surface-light);
    }
    .process-caption {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: var(--font-small);
        font-family: var(--mono);
        letter-spacing: .03em;
        gap: 20px;
    }
    .auto-steps {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin-block: 40px 30px;
        gap: 36px;
    }
    .auto-steps li {
        position: relative;
        padding: 19px 15px;
        border: 1px solid var(--line);
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        background: var(--surface-light);
    }
    .auto-steps li:not(:last-child)::after {
        content: "→";
        position: absolute;
        left: calc(100% + 10px);
        top: 40%;
        font-size: 20px;
        color: var(--muted);
    }
    .step-icon {
        font-size: 25px;
        line-height: 1;
        margin-bottom: 13px;
    }
    .auto-steps strong {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: -.035em;
    }
    .auto-steps li > span:last-child {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 5px;
    }
    .auto-result {
        border-top: 1px solid var(--line);
        padding-top: 24px;
        display: flex;
        align-items: center;
        gap: 18px;
    }
    .result-check {
        color: var(--accent-contrast);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--accent);
        font-size: 23px;
    }
    .auto-result p {
        font-size: 26px;
        letter-spacing: -.045em;
    }
    .auto-result p span {
        display: block;
        font-size: var(--font-small);
        letter-spacing: 0;
        color: var(--muted);
        margin-top: 4px;
    }
    .manual-steps {
        counter-reset: manual;
        list-style: none;
        padding: 0;
        margin-block: 35px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 13px;
    }
    .manual-steps li {
        border: 1px dashed #b2bf9b;
        padding: 13px;
        font-size: var(--font-small);
    }
    .manual-steps li::before {
        counter-increment: manual;
        content: counter(manual, decimal-leading-zero) " / ";
        color: var(--muted);
        font-family: var(--mono);
        font-size: var(--font-small);
    }
    .process-result {
        font-size: 22px;
        letter-spacing: -.03em;
    }
    .process-disclaimer {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 19px;
    }
    .ai-section {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 8%;
        align-items: center;
    }
    .ai-copy .eyebrow {
        margin-bottom: 26px;
    }
    .ai-copy h2 {
        margin-bottom: 25px;
    }
    .ai-copy > p:not(.eyebrow) {
        font-size: var(--font-body);
        color: var(--muted);
        max-width: 310px;
        margin-bottom: 20px;
    }
    .ai-copy .text-link {
        font-size: var(--font-small);
    }
    .ai-workbench {
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 25px;
        background: var(--surface);
    }
    .workbench-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .workbench-header .micro-label {
        font-size: var(--font-small);
    }
    .ai-badge {
        font-family: var(--mono);
        font-size: var(--font-small);
        border: 1px solid var(--line);
        padding: 5px 7px;
        border-radius: 4px;
    }
    .document-demo {
        display: flex;
        gap: 20px;
        align-items: center;
        padding-block: 38px;
    }
    .document-sheet {
        width: 47%;
        min-height: 190px;
        padding: 22px 18px;
        background: var(--paper);
        border: 1px solid var(--line);
        box-shadow: 6px 6px 0 #e2e5d7;
        transform: rotate(-4deg);
    }
    .document-sheet > span {
        font-family: var(--mono);
        font-size: var(--font-small);
        display: block;
        margin-bottom: 19px;
    }
    .document-sheet > i {
        display: block;
        height: 4px;
        width: 100%;
        background: #d8dbcf;
        margin-bottom: 9px;
    }
    .document-sheet > i:nth-of-type(2) {
        width: 75%;
    }
    .document-sheet > i:last-child {
        width: 60%;
    }
    .document-highlight {
        background: var(--accent-soft);
        padding: 7px;
        font-family: var(--mono);
        font-size: var(--font-small);
        border: 1px dashed #83984d;
        margin-block: 14px;
    }
    .document-arrow {
        font-size: 30px;
        color: var(--accent-ink);
    }
    .extracted-data {
        width: 46%;
        font-family: var(--mono);
    }
    .extracted-data > span:first-child {
        font-size: var(--font-small);
        display: block;
        margin-bottom: 16px;
        color: var(--accent-ink);
    }
    .extracted-data dl {
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: var(--font-small);
        gap: 14px 10px;
    }
    .extracted-data dt {
        color: var(--muted);
    }
    .extracted-data dd {
        text-align: right;
    }
    .review-label {
        display: inline-block;
        margin-top: 20px;
        font-size: var(--font-small);
        background: var(--accent-soft);
        padding: 6px;
        border-radius: 3px;
    }
    .ai-capabilities {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        padding-top: 23px;
        border-top: 1px solid var(--line);
    }
    .ai-capabilities span {
        padding: 5px 10px;
        border: 1px solid var(--line);
        border-radius: 30px;
        font-size: var(--font-small);
    }
    .ai-note {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 20px;
        line-height: 1.7;
    }
    .about-heading {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 9%;
        align-items: end;
        margin-top: 34px;
    }
    .about-heading h2 {
        font-size: clamp(34px, 4vw, 59px);
    }
    .about-heading .serif-word {
        color: var(--accent-light);
    }
    .about-heading > p {
        color: #c1c7b5;
        font-size: var(--font-body);
        line-height: 1.8;
    }
    .approach-list {
        margin-top: 54px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
        list-style: none;
        padding: 0;
    }
    .approach-list li {
        border-top: 1px solid var(--dark-line);
        padding-top: 23px;
    }
    .approach-list li > span {
        font-family: var(--mono);
        font-size: var(--font-small);
        color: #b8c4a2;
    }
    .approach-list h3 {
        font-size: 22px;
        margin-block: 22px 10px;
        font-weight: 500;
        letter-spacing: -.035em;
    }
    .approach-list p {
        font-size: var(--font-small);
        color: #c1c7b5;
        max-width: 285px;
    }
    .contact-section {
        background: var(--accent);
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10%;
    }
    .contact-copy .eyebrow {
        margin-bottom: 30px;
    }
    .contact-copy h2 {
        font-size: clamp(40px, 4.7vw, 68px);
    }
    .contact-copy > p:not(.eyebrow) {
        margin-top: 28px;
        font-size: var(--font-body);
        line-height: 1.7;
    }
    .contact-scribble {
        display: block;
        font-family: Georgia, serif;
        font-size: 92px;
        line-height: 1;
        margin-top: 18px;
    }
    .contact-email {
        display: inline-block;
        font-size: var(--font-body);
        border-bottom: 1px solid var(--ink);
        margin-top: 15px;
        overflow-wrap: anywhere;
    }
    .form-notice {
        border: 1px solid #7d953b;
        border-radius: 6px;
        padding: 12px 15px;
        font-size: var(--font-small);
        background: var(--accent-soft);
        margin-bottom: 22px;
    }
    .notice-error {
        background: #fff0d3;
        border-color: #b49247;
    }
    .notice-success {
        background: #f2e8dd;
    }
    .contact-form label:not(.consent-label) {
        display: block;
        font-size: var(--font-small);
        font-weight: 600;
        margin-bottom: 10px;
    }
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 24px;
    }
    .contact-form input:not([type="checkbox"]):not([type="hidden"]), .contact-form textarea {
        display: block;
        width: 100%;
        min-height: 43px;
        border: 0;
        border-bottom: 1px solid #859c3c;
        padding: 10px 0;
        background: transparent;
        border-radius: 0;
        color: var(--ink);
        font-size: var(--font-body);
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
        color: var(--muted);
        opacity: 1;
    }
    .contact-form textarea {
        resize: vertical;
    }
    .field-help {
        font-size: var(--font-small);
        color: var(--muted);
        margin-top: 9px;
    }
    .consent-label {
        display: flex;
        gap: 10px;
        font-size: var(--font-small);
        line-height: 1.7;
        margin-block: 25px;
        align-items: start;
    }
    .consent-label input {
        accent-color: var(--ink);
        margin-top: 3px;
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }
    .honeypot {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
    }
    .contact-form .button {
        min-width: 220px;
    }
    .site-footer {
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: space-between;
        padding-block: 35px;
        font-size: var(--font-small);
        color: var(--muted);
    }
    .footer-brand {
        font-family: var(--mono);
        font-size: var(--font-small);
        color: var(--ink);
        letter-spacing: .03em;
    }
    .footer-brand span {
        display: block;
        font-family: var(--font);
        color: var(--muted);
        font-size: var(--font-small);
        margin-top: 4px;
        letter-spacing: 0;
    }
    .back-top {
        border: 1px solid var(--line);
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        font-size: 20px;
        flex-shrink: 0;
    }
    @keyframes data-flow {
        to {
            stroke-dashoffset: -616;
        }
    }
    .js .before-panel:not(.is-active) {
        display: none;
    }
    html:not(.js) .process-switch {
        display: none;
    }
    .reveal-in {
        animation: reveal-in .6s ease-out both;
    }
    @keyframes reveal-in {
        from {
            opacity: .5;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
@layer responsive {
    @media (min-width: 1500px) {
        .hero {
            padding-top: 74px;
        }
        .flow-canvas {
            height: 400px;
        }
    }
    @media (max-width: 1100px) {
        .site-header {
            gap: 24px;
        }
        .site-navigation {
            gap: 20px;
        }
        .hero {
            grid-template-columns: 1.05fr 1fr;
            column-gap: 3%;
        }
        .hero h1 {
            font-size: 50px;
        }
        .hero-actions {
            gap: 15px;
        }
        .hero-actions .button {
            gap: 20px;
            padding-inline: 18px;
        }
        .hero-description {
            font-size: var(--font-body);
        }
        .flow-node {
            padding: 9px;
            gap: 6px;
            min-height: 62px;
        }
        .flow-node small {
            font-size: var(--font-small);
        }
        .flow-node > span:nth-child(2) {
            font-size: var(--font-small);
        }
        .node-icon {
            width: 19px;
            font-size: 19px;
        }
        .flow-canvas {
            height: 320px;
        }
        .hub-mark {
            font-size: 30px;
        }
        .hub-mark > span {
            font-size: 17px;
        }
        .system-card-header {
            padding-inline: 15px;
        }
        .system-card-header .micro-label {
            font-size: var(--font-small);
        }
        .system-live {
            font-size: var(--font-small);
        }
        .problem-card {
            padding-inline: 18px;
        }
        .copy-visual kbd {
            font-size: var(--font-small);
            padding-inline: 5px;
        }
        .file-visual {
            font-size: var(--font-small);
        }
        .problem-card h3 {
            font-size: 17px;
        }
        .problem-card p {
            font-size: var(--font-small);
        }
        .auto-steps {
            gap: 25px;
        }
        .auto-steps li {
            padding-inline: 12px;
        }
        .auto-steps li:not(:last-child)::after {
            left: calc(100% + 4px);
        }
        .ai-workbench {
            padding: 20px;
        }
        .document-demo {
            gap: 12px;
        }
        .document-sheet {
            padding-inline: 12px;
        }
        .document-arrow {
            font-size: 23px;
        }
        .contact-grid {
            gap: 6%;
        }
    }
    @media (max-width: 850px) {
        .site-header {
            min-height: 86px;
            gap: 20px;
            flex-wrap: wrap;
        }
        .brand {
            font-size: 28px;
        }
        .site-navigation {
            order: 4;
            width: 100%;
            justify-content: center;
            padding: 0 0 18px;
        }
        .menu-toggle {
            display: block;
            margin-left: auto;
        }
        .header-cta {
            gap: 20px;
        }
        .hero {
            padding-top: 35px;
            grid-template-columns: 1fr;
            gap: 35px;
        }
        .hero-copy {
            padding-bottom: 0;
        }
        .hero h1 {
            font-size: clamp(48px, 7.6vw, 68px);
        }
        .hero-description {
            max-width: 460px;
            font-size: 17px;
        }
        .hero-note {
            margin-top: 22px;
        }
        .system-card {
            max-width: 600px;
            width: 100%;
            justify-self: center;
            transform: none;
        }
        .flow-canvas {
            height: 350px;
        }
        .flow-node {
            min-height: 70px;
            padding: 13px;
            gap: 12px;
        }
        .flow-node > span:nth-child(2) {
            font-size: var(--font-small);
        }
        .flow-node small {
            font-size: var(--font-small);
        }
        .node-icon {
            font-size: 25px;
            width: 25px;
        }
        .system-card-header {
            padding: 18px 20px;
        }
        .system-card-header .micro-label {
            font-size: var(--font-small);
        }
        .system-live {
            font-size: var(--font-small);
        }
        .hub-mark {
            font-size: 38px;
        }
        .hub-mark > span {
            font-size: 20px;
        }
        .system-log p {
            font-size: var(--font-small);
        }
        .system-log p span {
            font-size: var(--font-small);
        }
        .hero-bottom {
            margin-top: 8px;
        }
        .problem-heading p {
            width: auto;
            font-size: var(--font-body);
        }
        .problem-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .problem-card {
            padding: 24px !important;
        }
        .problem-card:nth-child(2) {
            border-right: 0;
        }
        .problem-card:nth-child(-n+2) {
            border-bottom: 1px solid var(--dark-line);
        }
        .problem-card h3 {
            font-size: 21px;
        }
        .problem-card p {
            font-size: var(--font-body);
        }
        .copy-visual kbd {
            font-size: var(--font-small);
            padding-inline: 7px;
        }
        .file-visual {
            font-size: var(--font-small);
        }
        .service-item summary {
            grid-template-columns: 130px 1fr 28px;
            gap: 15px;
        }
        .service-detail {
            margin-left: 145px;
        }
        .service-code {
            font-size: var(--font-small);
        }
        .section-title-row > p {
            width: 210px;
            font-size: var(--font-body);
        }
        .auto-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .auto-steps li:nth-child(2)::after {
            content: "↓";
            left: auto;
            right: 14px;
            top: calc(100% + 1px);
        }
        .auto-steps li:nth-child(3)::after {
            content: "→";
        }
        .auto-steps li:nth-child(3) {
            order: 4;
        }
        .auto-steps li:nth-child(4) {
            order: 3;
        }
        .auto-steps li:nth-child(3)::after {
            display: none;
        }
        .auto-steps li:nth-child(4)::after {
            content: "←";
            position: absolute;
            left: calc(100% + 5px);
            top: 40%;
            font-size: 20px;
            color: var(--muted);
        }
        .manual-steps {
            grid-template-columns: repeat(2, 1fr);
        }
        .ai-section {
            grid-template-columns: 1fr;
            gap: 35px;
        }
        .ai-copy h2 br:nth-child(2) {
            display: none;
        }
        .ai-copy > p:not(.eyebrow) {
            max-width: 480px;
        }
        .ai-workbench {
            max-width: 650px;
            width: 100%;
        }
        .document-demo {
            gap: 25px;
        }
        .document-sheet {
            min-height: 210px;
            padding: 25px;
        }
        .document-sheet > span {
            font-size: var(--font-small);
        }
        .extracted-data dl {
            font-size: var(--font-small);
        }
        .extracted-data > span:first-child {
            font-size: var(--font-small);
        }
        .about-heading {
            grid-template-columns: 1fr;
            gap: 28px;
        }
        .about-heading > p {
            max-width: 600px;
        }
        .approach-list {
            gap: 25px;
        }
        .approach-list h3 {
            font-size: 20px;
        }
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .contact-scribble {
            display: none;
        }
        .contact-copy > p:not(.eyebrow) {
            margin-top: 20px;
        }
        .site-footer {
            flex-wrap: wrap;
            justify-content: start;
            gap: 25px;
        }
        .site-footer > span:nth-child(3) {
            margin-left: auto;
        }
    }
    @media (max-width: 540px) {
        :root {
            --space: 22px;
        }
        .site-header {
            min-height: 83px;
            gap: 10px;
        }
        .brand {
            gap: 8px;
            font-size: 25px;
        }
        .brand-sub {
            font-size: var(--font-small);
        }
        .brand-symbol {
            width: 25px;
            height: 30px;
            gap: 3px;
        }
        .brand-symbol i {
            width: 23px;
            height: 6px;
        }
        .brand-symbol i:nth-child(2) {
            width: 16px;
            margin-left: 7px;
        }
        .header-cta {
            padding: 8px 10px;
            gap: 12px;
            font-size: var(--font-small);
        }
        .menu-toggle {
            font-size: 0;
            padding: 8px;
        }
        .menu-toggle span {
            font-size: 25px;
        }
        .site-navigation {
            gap: 21px;
        }
        .site-navigation a {
            font-size: var(--font-small);
        }
        .hero {
            padding-top: 22px;
            gap: 34px;
        }
        .hero .eyebrow {
            font-size: var(--font-small);
            margin-bottom: 22px;
        }
        .hero h1 {
            font-size: clamp(38px, 10.5vw, 56px);
            letter-spacing: -.06em;
        }
        .word-highlight::after {
            height: 10px;
        }
        .hero-description {
            font-size: var(--font-body);
            margin-top: 22px;
            max-width: 330px;
        }
        .hero-actions {
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 26px;
        }
        .hero-actions .button {
            min-height: 50px;
            font-size: var(--font-small);
            gap: 25px;
            padding-inline: 18px;
        }
        .hero-actions .text-link {
            font-size: var(--font-small);
            gap: 10px;
        }
        .hero-note {
            font-size: var(--font-small);
        }
        .system-card-header {
            padding: 15px 12px;
        }
        .system-card-header .micro-label {
            font-size: var(--font-small);
        }
        .system-live {
            font-size: var(--font-small);
        }
        .node-icon {
            width: 17px;
        }
        .hub-mark > span {
            font-size: var(--font-body);
        }
        .system-log {
            margin-inline: 12px;
            gap: 7px;
            padding: 10px;
            min-height: 66px;
        }
        .log-label {
            font-size: var(--font-small);
        }
        .system-card-footer {
            padding: 14px 12px;
            font-size: var(--font-small);
        }
        .system-card-footer .micro-label {
            font-size: var(--font-small);
        }
        .hero-bottom {
            font-size: var(--font-small);
            align-items: start;
            gap: 20px;
            padding-top: 17px;
        }
        .hero-bottom > span {
            max-width: 150px;
            line-height: 1.9;
        }
        .hero-bottom a {
            gap: 12px;
        }
        .problems {
            margin-top: 15px;
        }
        .problems .section-space {
            padding-top: 48px;
            padding-bottom: 35px;
        }
        .section-heading {
            margin-bottom: 28px;
        }
        .section-heading .micro-label {
            display: none;
        }
        .eyebrow {
            font-size: var(--font-small);
        }
        .problem-heading {
            flex-direction: column;
            align-items: start;
            gap: 20px;
            margin-bottom: 30px;
        }
        .problem-heading h2 {
            font-size: 37px;
        }
        .problem-heading h2 .muted br {
            display: block;
        }
        .problem-heading p {
            font-size: var(--font-body);
        }
        .problem-card {
            padding: 20px 12px !important;
        }
        .problem-card:nth-child(odd) {
            padding-left: 0 !important;
        }
        .problem-card:nth-child(even) {
            padding-right: 0 !important;
            padding-left: 17px !important;
        }
        .problem-card h3 {
            font-size: 17px;
        }
        .problem-card p {
            font-size: var(--font-small);
            min-height: 76px;
        }
        .problem-tag {
            font-size: var(--font-small);
            margin-top: 12px;
        }
        .copy-visual {
            gap: 3px;
        }
        .copy-visual kbd {
            font-size: var(--font-small);
            padding: 4px;
        }
        .copy-visual > span {
            margin-inline: 1px;
            font-size: var(--font-small);
        }
        .file-visual {
            font-size: var(--font-small);
            gap: 6px;
        }
        .file-visual > span {
            font-size: 23px;
        }
        .sync-visual {
            gap: 10px;
            font-size: 23px;
        }
        .tabs-visual i {
            width: 25px;
            height: 23px;
        }
        .problem-conclusion {
            gap: 10px;
            padding-top: 25px;
        }
        .problem-conclusion p {
            font-size: 23px;
            line-height: 1.2;
            max-width: 230px;
        }
        .lime-arrow {
            font-size: 32px;
        }
        .round-link {
            width: 36px;
            height: 36px;
            font-size: 20px;
        }
        .section-title-row {
            flex-direction: column;
            align-items: start;
            gap: 20px;
            margin-bottom: 30px;
        }
        .section-title-row > p {
            width: auto;
            font-size: var(--font-body);
        }
        .section-title-row > p br {
            display: none;
        }
        .service-item summary {
            grid-template-columns: 1fr 24px;
            gap: 10px;
            padding-block: 22px;
        }
        .service-code {
            grid-column: 1;
            font-size: var(--font-small);
        }
        .service-item h3 {
            grid-column: 1;
            font-size: 21px;
            max-width: 275px;
        }
        .service-plus {
            grid-column: 2;
            grid-row: 1 / 3;
            font-size: 25px;
        }
        .service-detail {
            margin-left: 0;
            padding-bottom: 25px;
        }
        .service-detail > p {
            font-size: var(--font-body);
        }
        .service-detail .service-example {
            font-size: var(--font-small);
        }
        .section-footnote {
            font-size: var(--font-small);
        }
        .process-switch {
            width: 100%;
        }
        .process-switch button {
            flex: 1;
            flex-direction: column;
            align-items: start;
            gap: 2px;
            padding: 9px 12px;
        }
        .process-switch button > span {
            font-size: var(--font-small);
        }
        .process-panel {
            padding: 20px 16px;
        }
        .process-caption {
            font-size: var(--font-small);
            gap: 8px;
            align-items: start;
        }
        .status-pill {
            font-size: var(--font-small);
            padding: 4px 6px;
            white-space: nowrap;
        }
        .auto-steps {
            gap: 27px 20px;
            margin-block: 28px 24px;
        }
        .auto-steps li {
            padding: 15px 10px;
        }
        .auto-steps strong {
            font-size: 17px;
        }
        .auto-steps li > span:last-child {
            font-size: var(--font-small);
        }
        .auto-steps li:not(:last-child)::after {
            left: calc(100% + 2px);
            font-size: 17px;
        }
        .auto-steps li:nth-child(2)::after {
            left: auto;
            right: 10px;
        }
        .auto-steps li:nth-child(4)::after {
            left: calc(100% + 2px);
            font-size: 17px;
        }
        .auto-result {
            gap: 12px;
        }
        .auto-result p {
            font-size: 23px;
        }
        .auto-result p span {
            font-size: var(--font-small);
        }
        .result-check {
            flex-shrink: 0;
            width: 37px;
            height: 37px;
        }
        .manual-steps {
            grid-template-columns: 1fr;
            gap: 8px;
            margin-block: 24px;
        }
        .manual-steps li {
            font-size: var(--font-small);
        }
        .process-result {
            font-size: 19px;
        }
        .process-disclaimer {
            font-size: var(--font-small);
        }
        .ai-copy h2 {
            font-size: 43px;
        }
        .ai-workbench {
            padding: 17px 14px;
        }
        .workbench-header .micro-label {
            font-size: var(--font-small);
        }
        .ai-badge {
            font-size: var(--font-small);
        }
        .document-demo {
            gap: 12px;
            padding-block: 30px;
        }
        .document-sheet {
            width: 45%;
            padding: 18px 10px;
            min-height: 185px;
        }
        .document-sheet > span {
            font-size: var(--font-small);
        }
        .document-highlight {
            font-size: var(--font-small);
            padding: 5px;
        }
        .document-arrow {
            font-size: 20px;
        }
        .extracted-data {
            flex: 1;
        }
        .extracted-data > span:first-child {
            font-size: var(--font-small);
        }
        .extracted-data dl {
            font-size: var(--font-small);
            gap: 11px 5px;
        }
        .review-label {
            font-size: var(--font-small);
        }
        .ai-capabilities span {
            font-size: var(--font-small);
            padding-inline: 8px;
        }
        .ai-note {
            font-size: var(--font-small);
        }
        .about-heading h2 {
            font-size: 35px;
        }
        .about-heading > p {
            font-size: var(--font-small);
        }
        .approach-list {
            grid-template-columns: 1fr;
            margin-top: 35px;
            gap: 27px;
        }
        .approach-list li {
            padding-top: 17px;
        }
        .approach-list h3 {
            margin-top: 14px;
        }
        .approach-list p {
            max-width: 100%;
        }
        .contact-copy h2 {
            font-size: 42px;
        }
        .contact-grid {
            gap: 30px;
        }
        .form-row {
            grid-template-columns: 1fr;
            gap: 22px;
        }
        .contact-form input:not([type="checkbox"]):not([type="hidden"]), .contact-form textarea {
            font-size: var(--font-body);
        }
        .contact-form .button {
            width: 100%;
        }
        .form-notice {
            font-size: var(--font-small);
        }
        .site-footer {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            padding-block: 28px;
        }
        .footer-brand {
            grid-column: 1;
        }
        .site-footer > span {
            grid-column: 1;
        }
        .site-footer > span:nth-child(3) {
            margin-left: 0;
        }
        .back-top {
            grid-column: 2;
            grid-row: 1 / 4;
        }
        .content-page h1 {
            font-size: 36px;
        }
    }
    @media (max-width: 850px) {
        .js .site-navigation {
            display: none;
        }
        .js .site-navigation.is-open {
            display: flex;
        }
        html:not(.js) .menu-toggle {
            display: none;
        }
    }
    @media (max-width: 540px) {
        .flow-canvas {
            height: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            padding: 18px 12px 24px;
        }
        .flow-canvas::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 40px;
            bottom: 50px;
            width: 1px;
            background: #a5b08f;
        }
        .flow-lines {
            display: none;
        }
        .flow-node {
            position: relative;
            inset: auto;
            width: 100%;
            min-height: 66px;
            padding: 10px 8px;
            gap: 7px;
        }
        .flow-node::before {
            content: "";
            position: absolute;
            top: 50%;
            height: 1px;
            width: 8px;
            background: #a5b08f;
        }
        .node-site::before, .node-documents::before, .node-ai::before {
            right: -8px;
        }
        .node-crm::before, .node-accounting::before, .node-report::before {
            left: -8px;
        }
        .flow-node > span:nth-child(2) {
            font-size: var(--font-small);
        }
        .flow-node small {
            font-size: var(--font-small);
        }
        .flow-hub {
            position: relative;
            inset: auto;
            grid-column: 1 / -1;
            grid-row: 1;
            width: 100%;
            height: 40px;
            aspect-ratio: auto;
            gap: 15px;
            background: var(--ink);
            color: var(--accent-light);
            box-shadow: none;
            border-color: var(--ink);
            border-radius: 5px;
        }
        .flow-hub > span:last-child {
            position: static;
            font-size: var(--font-small);
        }
        .hub-mark {
            font-size: 25px;
        }
        .node-icon {
            font-size: 19px;
        }
        .system-log p {
            font-size: var(--font-small);
        }
        .system-log p span {
            font-size: var(--font-small);
        }
        .problem-card p {
            font-size: var(--font-small);
        }
        .auto-steps li > span:last-child {
            font-size: var(--font-small);
        }
        .auto-result p span {
            font-size: var(--font-small);
        }
    }
    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }
        *, *::before, *::after {
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
        }
    }
}
