* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Pitch Sans';
    src: url('/fonts/pitch-sans-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 16px;
    height: auto;
    min-height: -webkit-fill-available;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: none;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
    overflow-y: auto;
}

html::-webkit-scrollbar,
html::-webkit-scrollbar-track {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    border: solid 0.125rem transparent;
}

html::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0.625rem 0.625rem #24241D;
    transition: all .4s;
    border: solid 0.125rem transparent;
}

html::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 0.625rem 0.625rem #3D424D;
}

html::-webkit-scrollbar-corner {
    background-color: transparent;
}

.navbar {
    height: 4rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #DFE2E0;
}

.navbar-content {
    max-width: 75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-content {
    max-width: 75rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.navbar-button {
    text-decoration: none;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: 1px solid #24241D;
    padding: 0.25rem .85rem;
    color: inherit;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-button:hover {
    background-color: #24241D;
    color: #EEF1F0;
}

.footer {
    height: 4rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-top: 1px dashed #DFE2E0;
}

.body::before,
.body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    border-left: 1px dashed #DFE2E0;
    pointer-events: none;
}

.body::before {
    left: calc(50% - 40rem);
}

.body::after {
    left: calc(50% + 40rem);
}

.footer-text {
    font-size: 0.8rem;
    color: #868E8B;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.brand {
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
    -webkit-text-stroke: 0.25px #24241D;
}

body,
.body {
    position: relative;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #24241D;
    background-color: #F7F9F8;
    min-height: 100vh;
    overflow: auto;
    line-height: 1.6;
}

main,
.main {
    flex-grow: 1;
}

.hero-title {
    font-size: 4.25rem;
    line-height: 1.05;
    color: #2e2b26;
    font-weight: 600;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    max-width: 50rem;
    margin: 0 auto 3rem;
}

a {
    text-decoration: none;
    color: currentColor;
    outline: 0;
    cursor: pointer;
}

.hero {
    padding: 6rem 1.25rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero-content {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #24241D;
    color: #EEF1F0;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #24241D;
}

.cta-button:hover {
    background-color: transparent;
    color: #24241D;
}

.hero-image-placeholder {
    width: 100%;
    height: 30rem;
    background-color: #F0F2F1;
    border: 1px dashed #DFE2E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.hero-image-placeholder:empty::before {
    content: "Image/GIF placeholder";
    color: #868E8B;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
}

.hero-image-placeholder:has(img) {
    background-color: transparent;
    border: none;
    height: auto;
}

.hero-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.emphasized {
    color: #2e2b26;
    font-weight: 500;
}

.features {
    padding: 0;
}

.features .container {
    padding: 0;
    max-width: 80rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px dashed #DFE2E0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px dashed #DFE2E0;
    border-bottom: 1px dashed #DFE2E0;
}

.feature-item:nth-child(2n) {
    border-right: none;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #474644;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin: 0;
    padding: 2rem 2rem 0 2rem;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #24241D;
    margin: 0;
    padding-inline: 2rem;
}

.feature-image-placeholder {
    width: 100%;
    height: 14rem;
    background-color: #F0F2F1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.feature-image-placeholder:empty::before {
    content: "Image/GIF placeholder";
    color: #868E8B;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
}

.feature-image-placeholder:has(img) {
    background-color: transparent;
    height: auto;
}

.feature-image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.image-section {
    padding: 4rem 0;
}

.image-placeholder {
    width: 100%;
    height: 25rem;
    background-color: #F0F2F1;
    border: 1px dashed #DFE2E0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder::before {
    content: "Image/GIF placeholder";
    color: #868E8B;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9rem;
}

.capabilities {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2e2b26;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #24241D;
    text-align: center;
    margin-bottom: 3rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.capability-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.capability-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2e2b26;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin: 0;
}

.capability-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #24241D;
    margin: 0;
}

.outcomes {
    padding: 6rem 0;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.outcome-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2e2b26;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin: 0;
}

.outcome-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #24241D;
    margin: 0;
}

.integrations {
    padding: 0;
}

.integrations .container {
    padding: 1rem 0;
    max-width: 80rem;
    border-bottom: 1px dashed #DFE2E0;
}

.integrations-label {
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8rem;
    color: #aabdb5;
    text-align: center;
    margin-bottom: 1.5rem;
}

.integrations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 6rem;
    flex-wrap: wrap;
    padding-bottom: 0.75rem;
    padding-inline: 2rem;
}

.integrations-logos-group {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.integration-logo {
    height: 2.25rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
}

.closing-section {
    padding: 5rem 0;
    text-align: center;
}

.closing-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    color: #2e2b26;
    font-family: 'Pitch Sans', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.closing-contact {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.cta-email {
    color: #2e2b26;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #DFE2E0;
    text-underline-offset: 0.25rem;
    transition: all 0.3s ease;
}

.cta-email:hover {
    text-decoration-color: #24241D;
}

@media only screen and (max-width: 767px) {
    html {
        height: auto;
        overflow-y: auto;
    }

    body,
    .body {
        height: auto;
        overflow: auto;
    }

    .hero {
        padding: 4rem 0.625rem 3rem;
    }

    .container {
        padding: 0 0.625rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .feature-grid,
    .capability-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
    }

    .capabilities,
    .outcomes,
    .closing-section {
        padding: 4rem 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .closing-title {
        font-size: 1.5rem;
    }

    .hero-image-placeholder,
    .image-placeholder {
        height: 20rem;
    }

    .feature-image-placeholder {
        height: 10rem;
    }

    .integrations-logos {
        gap: 1.5rem 3rem;
    }

    .integrations-logos-group {
        gap: 3rem;
    }
}

@media only screen and (max-width: 600px) {
    .integrations-logos-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
    }

    .integration-logo {
        height: 1.75rem;
    }
}