:root {
    --ink: #151a25;
    --ink2: #222938;
    --coral: #f14461;
    --coral2: #ff6b7d;
    --paper: #f6f5f2;
    --muted: #6c7280;
    --line: #e2e2df
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    color: var(--ink);
    background: #fff
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(21, 26, 37, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #ffffff17
}

.nav-wrap {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 205px;
    height: auto;
    display: block
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #dfe2e8;
    font-size: 14px;
    font-weight: 600
}

.site-header nav>a:not(.button):hover {
    color: #fff
}

.more-nav {
    position: relative;
    font: inherit
}

.more-nav summary {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    list-style: none
}

.more-nav summary::-webkit-details-marker {
    display: none
}

.more-nav summary span {
    font-size: 16px;
    line-height: 1;
    transition: transform .2s
}

.more-nav[open] summary span {
    transform: rotate(180deg)
}

.more-nav>div {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    display: grid;
    min-width: 180px;
    padding: 10px;
    background: #222938;
    border: 1px solid #ffffff1c;
    border-radius: 4px;
    box-shadow: 0 18px 40px #0005
}

.more-nav a {
    padding: 10px 12px;
    border-radius: 3px;
    color: #dfe2e8;
    font-size: 13px
}

.more-nav a:hover {
    background: #ffffff0f;
    color: #fff
}

.menu {
    display: none;
    color: #fff;
    border: 1px solid #ffffff33;
    background: none;
    padding: 9px 12px;
    border-radius: 6px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--coral);
    color: #fff;
    border: 0;
    padding: 16px 22px;
    font: 700 14px Manrope;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 12px 28px #f1446130;
    transition: .2s
}

.button:hover {
    background: #db304e;
    transform: translateY(-2px)
}

.button.small {
    padding: 12px 17px
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(120deg, #151a25, #222938)
}

.hero {
    padding: 90px 0 76px
}

.hero:after,
.page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 40%, #f1446114);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1
}

.hero h1,
.page-hero h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 20px 0
}

.hero h1 em,
.page-hero h1 em {
    font-style: normal;
    color: var(--coral2)
}

.lead,
.page-hero p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.75;
    color: #c4c8d1
}

.eyebrow,
.kicker {
    font-size: 11px;
    letter-spacing: .16em;
    font-weight: 800;
    color: var(--coral)
}

.actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 32px 0
}

.text-link,
.arrow-link {
    font-weight: 700;
    font-size: 14px
}

.text-link {
    border-bottom: 1px solid #ffffff70;
    padding-bottom: 5px
}

.proof {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: #c5c9d1
}

.proof span:before {
    content: "✓";
    color: var(--coral2);
    margin-right: 7px
}

.hero-visual {
    position: relative
}

.hero-visual img {
    width: 115%;
    max-width: none;
    filter: drop-shadow(0 30px 30px #0007);
    transform: translateX(-5%)
}

.visual-label {
    position: absolute;
    right: 0;
    top: 4%;
    z-index: 2;
    padding: 12px 15px;
    background: #fff;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 16px 40px #0004
}

.visual-label span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #31bb78;
    margin-right: 7px
}

.section {
    padding: 94px 0
}

.split,
.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px
}

.section h2,
.cta h2 {
    font-size: 43px;
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 12px 0 20px
}

.section p {
    color: var(--muted);
    line-height: 1.75
}

.arrow-link {
    color: var(--coral);
    display: inline-block;
    margin-top: 12px
}

.outcomes {
    background: var(--ink);
    color: #fff
}

.kicker.light {
    color: #ff8b9d
}

.section-head {
    align-items: end;
    margin: 10px 0 38px
}

.section-head>p {
    color: #b9bec8
}

.four-grid,
.three-grid,
.service-grid {
    display: grid;
    gap: 16px
}

.four-grid {
    grid-template-columns: repeat(4, 1fr)
}

.four-grid article {
    padding: 26px 24px;
    border: 1px solid #ffffff18;
    background: #ffffff08
}

.four-grid b,
.industries b {
    font-size: 11px;
    color: var(--coral);
    letter-spacing: .12em
}

.four-grid h3 {
    font-size: 21px
}

.four-grid p {
    font-size: 14px;
    color: #b7bdc8
}

.services {
    background: var(--paper)
}

.section-head.dark>p {
    color: var(--muted)
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 35px
}

.service-grid article {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    min-height: 215px;
    transition: .2s
}

.service-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px #151a2510
}

.service-grid article>span {
    font-size: 27px;
    color: var(--coral)
}

.service-grid h3 {
    margin: 20px 0 7px;
    font-size: 19px
}

.service-grid p {
    margin: 0;
    font-size: 14px
}

.dark-button {
    background: var(--ink);
    box-shadow: none
}

.device-grid,
.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center
}

.device-grid img,
.story-grid img {
    width: 100%
}

.device li {
    margin: 14px 0;
    color: var(--muted)
}

.device ul {
    list-style: none;
    padding: 0
}

.device li:before {
    content: "✓";
    color: var(--coral);
    margin-right: 10px;
    font-weight: 800
}

.cta {
    background: var(--coral);
    color: #fff;
    padding: 55px 0
}

.cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px
}

.cta h2 {
    margin-bottom: 0;
    max-width: 700px
}

.button.white {
    background: #fff;
    color: var(--ink);
    box-shadow: none
}

.page-hero {
    padding: 84px 0
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    font-size: 57px;
    max-width: 850px
}

.page-hero.compact {
    padding: 64px 0
}

.page-hero.full {
    min-height: 66vh;
    display: flex;
    align-items: center
}

.story-grid {
    align-items: start
}

.story-grid img {
    border-radius: 4px;
    aspect-ratio: 3/2;
    object-fit: cover
}

.values {
    background: var(--paper)
}

.three-grid {
    grid-template-columns: repeat(3, 1fr)
}

.values article,
.industries article {
    background: #fff;
    border-top: 3px solid var(--coral);
    padding: 28px
}

.values span {
    color: var(--coral);
    font-size: 12px;
    font-weight: 800
}

.service-grid.large {}

.case-study-list {
    background: var(--paper)
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.case-study-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: .2s
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px #151a2510
}

.case-study-card-visual,
.case-study-hero-visual {
    min-height: 245px;
    overflow: hidden;
    background: linear-gradient(135deg, #222938, #151a25)
}

.case-study-card-visual.has-image,
.case-study-hero-visual.has-image {
    display: flex;
    justify-content: center;
    align-items: end;
    background: linear-gradient(145deg, #f144611c, #151a25)
}

.case-study-card-visual img {
    display: block;
    width: 54%;
    max-height: 290px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 18px 40px #0006
}

.case-study-card-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px
}

.case-study-card-copy>span,
.case-study-systems>span {
    color: var(--coral);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase
}

.case-study-card h2 {
    margin: 14px 0 10px;
    font-size: 24px;
    line-height: 1.14;
    letter-spacing: -.035em
}

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

.case-study-card b {
    margin-top: auto;
    padding-top: 22px;
    color: var(--coral);
    font-size: 14px
}

.system-visual {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 245px;
    max-width: 290px;
    margin: auto;
    padding: 30px;
    position: relative
}

.system-visual:before {
    content: "";
    position: absolute;
    inset: 24%;
    border: 1px solid #f1446180;
    border-radius: 50%;
    box-shadow: 0 0 0 25px #f1446109, 0 0 0 50px #f1446108;
}

.system-visual span {
    position: relative;
    z-index: 1;
    padding: 8px 10px;
    background: #fff;
    color: var(--ink);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 20px #0004;
}

.case-study-hero-grid,
.case-study-intro,
.case-study-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 85px;
    align-items: center;
}

.case-study-hero {
    padding: 74px 0;
}

.case-study-hero h1 {
    max-width: 710px;
}

.case-study-hero-visual {
    min-height: 400px;
    border: 1px solid #ffffff18;
    border-radius: 4px
}

.case-study-hero-visual img {
    display: block;
    width: auto;
    height: 385px;
    max-width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 22px 46px #0007
}

.system-visual.large {
    min-height: 400px;
    max-width: 390px
}

.case-study-intro {
    align-items: start
}

.case-study-intro h2,
.case-study-approach h2 {
    max-width: 500px
}

.case-study-intro>p,
.case-study-approach p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8
}

.case-study-approach {
    background: var(--ink);
    color: #fff
}

.case-study-approach p {
    color: #c4c8d1
}

.case-study-list-items {
    margin: 28px 0 0;
    padding: 0;
    list-style: none
}

.case-study-list-items li {
    padding: 15px 0 15px 28px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.5;
    position: relative
}

.case-study-list-items li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 800
}

.case-study-systems {
    display: grid;
    gap: 1px;
    padding: 30px;
    background: var(--paper)
}

.case-study-systems b {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px
}

.case-study-quote {
    padding: 84px 0;
    background: var(--paper);
    text-align: center
}

.case-study-quote blockquote {
    max-width: 850px;
    margin: 0 auto 18px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.035em
}

.case-study-quote p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.industries {
    background: var(--paper)
}

.industries article {
    min-height: 220px
}

.contact-grid {
    align-items: start
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: 30px
}

.contact-details a,
.contact-details span {
    display: grid;
    gap: 4px;
    color: var(--muted)
}

.contact-details b {
    color: var(--ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.contact form {
    background: var(--paper);
    padding: 30px
}

.contact label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px
}

.contact input,
.contact textarea {
    width: 100%;
    border: 1px solid #d7d7d3;
    background: #fff;
    padding: 13px;
    margin-top: 7px;
    font: inherit;
    border-radius: 2px
}

.contact textarea {
    min-height: 140px;
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.check {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
    font-weight: 500 !important
}

.check input {
    width: auto;
    margin-top: 3px
}

.honeypot {
    position: absolute !important;
    left: -9999px
}

.contact small {
    display: block;
    color: var(--muted);
    margin-top: 14px
}

.legal-copy {
    max-width: 830px
}

.legal-copy h2 {
    font-size: 26px;
    margin-top: 42px
}

.legal-copy li {
    margin: 9px 0;
    line-height: 1.6;
    color: var(--muted)
}

.legal-copy a {
    text-decoration: underline
}

.cookie-link,
[data-cookie-settings] {
    border: 0;
    background: none;
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    max-width: 720px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 70px #0004;
    padding: 24px
}

.cookie-banner h2 {
    margin: 0 0 8px;
    font-size: 20px
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted)
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.cookie-actions button {
    padding: 11px 15px
}

.cookie-actions .secondary {
    background: var(--ink)
}

.cookie-actions .plain {
    color: var(--ink);
    background: #eee;
    box-shadow: none
}

.cookie-options {
    padding: 14px 0
}

.cookie-options label {
    display: flex;
    gap: 9px
}

footer {
    background: #11151e;
    color: #aeb3bd;
    padding: 58px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .7fr 1fr;
    gap: 65px
}

.footer-grid>div {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 13px
}

.footer-grid img {
    width: 190px
}

.footer-grid p {
    max-width: 370px;
    line-height: 1.7
}

.footer-grid b {
    color: #fff
}

.footer-base {
    border-top: 1px solid #ffffff17;
    margin-top: 38px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 11px
}

@media(max-width:900px) {
    .site-header nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: var(--ink);
        padding: 25px;
        flex-direction: column
    }

    .site-header nav.open {
        display: flex
    }

    .menu {
        display: block
    }

    .more-nav {
        width: 100%
    }

    .more-nav summary {
        justify-content: space-between;
        width: 100%
    }

    .more-nav>div {
        position: static;
        min-width: 0;
        margin-top: 10px;
        background: #ffffff0a;
        box-shadow: none
    }

    .hero-grid,
    .split,
    .section-head,
    .device-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding-top: 65px
    }

    .hero h1,
    .page-hero h1 {
        font-size: 48px
    }

    .hero-visual {
        max-width: 600px
    }

    .four-grid,
    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .three-grid {
        grid-template-columns: 1fr 1fr
    }

    .section {
        padding: 70px 0
    }

    .split,
    .section-head {
        gap: 24px
    }

    .cta .container {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .brand img {
        width: 175px
    }

    .hero h1,
    .page-hero h1 {
        font-size: 40px
    }

    .section h2,
    .cta h2 {
        font-size: 34px
    }

    .actions,
    .proof {
        align-items: flex-start;
        flex-direction: column
    }

    .proof {
        gap: 8px
    }

    .four-grid,
    .service-grid,
    .three-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-visual img {
        width: 110%
    }

    .page-hero {
        padding: 64px 0
    }

    .footer-base {
        gap: 14px;
        flex-direction: column
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px
    }
}

.customer-proof {
    background: #202634;
    color: #fff;
    padding: 24px 0;
    border-top: 1px solid #ffffff12
}

.customer-proof p {
    text-align: center;
    margin: 0 0 18px;
    color: #aeb5c1;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center
}

.logo-row img {
    max-width: 100px;
    max-height: 48px;
    margin: auto;
    object-fit: contain
}

.planning {
    background: var(--paper)
}

.planning-grid article {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px
}

.planning-grid span,
.project-facts span,
.result-card>span {
    display: block;
    color: var(--coral);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em
}

.planning-grid strong {
    display: block;
    font-size: 26px;
    margin: 12px 0
}

.planning-note {
    font-size: 12px
}

.planning-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 25px
}

.service-card-link article {
    height: 100%;
    position: relative
}

.service-card-link article b {
    display: block;
    color: var(--coral);
    font-size: 12px;
    margin-top: 22px
}

.process {
    background: var(--paper)
}

.light-cards article {
    background: #fff;
    color: var(--ink);
    border-color: var(--line)
}

.light-cards article p {
    color: var(--muted)
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: start
}

.outcome-list {
    padding: 0;
    list-style: none
}

.outcome-list li {
    position: relative;
    padding: 14px 0 14px 34px;
    border-bottom: 1px solid var(--line);
    color: var(--muted)
}

.outcome-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 800
}

.pain-list li:before {
    content: "!"
}

.project-facts,
.result-card,
.guide-card {
    background: var(--ink);
    color: #fff;
    padding: 30px
}

.project-facts strong {
    display: block;
    font-size: 22px;
    margin: 8px 0 26px
}

.project-facts p {
    color: #aeb5c1;
    font-size: 12px
}

.fit {
    background: var(--paper)
}

.result-card h3 {
    font-size: 26px;
    line-height: 1.3
}

.result-card a {
    color: var(--coral2);
    font-size: 13px;
    font-weight: 700
}

.wide-copy {
    max-width: 780px
}

.guide-card {
    margin-top: 30px
}

.guide-card p {
    color: #b9bec8
}

.contact select {
    width: 100%;
    border: 1px solid #d7d7d3;
    margin-top: 7px;
    font: inherit;
    color: var(--ink);
    min-height: 48px;
    border-radius: 2px;
    appearance: none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    background: #fff url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
    background-position-x: 99%;
    background-position-y: 11px;
    margin-right: 2rem;
    padding: 13px 2rem 13px 13px;
}

.campaign-hero .container {
    max-width: 900px;
    margin-left: max(20px, calc((100% - 1180px)/2))
}

@media(max-width:900px) {
    .logo-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .detail-grid {
        grid-template-columns: 1fr
    }

    .planning-actions {
        align-items: flex-start;
        flex-direction: column
    }
}

@media(max-width:580px) {
    .logo-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.impossible-nav {
    color: #ff8b9d !important
}

.impossible-teaser {
    background: linear-gradient(110deg, #2b1520, #151a25 60%);
    color: #fff;
    padding: 58px 0
}

.impossible-teaser .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px
}

.impossible-teaser h2 {
    font-size: 37px;
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 10px 0
}

.impossible-teaser p {
    max-width: 700px;
    color: #c4c8d1;
    line-height: 1.7
}

.impossible-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 45%, #4b1826 0, #211923 28%, #151a25 64%)
}

.impossible-hero .container {
    position: relative;
    z-index: 2
}

.impossible-hero h1 {
    max-width: 940px
}

.impossible-orbit {
    position: absolute;
    border: 1px solid #f1446144;
    border-radius: 50%;
    right: -8%;
    top: 50%;
    transform: translateY(-50%)
}

.impossible-orbit.one {
    width: 520px;
    height: 520px
}

.impossible-orbit.two {
    width: 340px;
    height: 340px;
    border-color: #ffffff1c
}

.impossible-intro {
    background: var(--paper)
}

.impossible-problems {
    background: var(--ink);
    color: #fff
}

.impossible-problems .section-head p {
    color: #b9bec8
}

.impossible-grid article {
    border: 1px solid #ffffff18;
    background: #ffffff08;
    padding: 27px;
    min-height: 230px
}

.impossible-grid b {
    color: var(--coral);
    font-size: 11px
}

.impossible-grid p {
    color: #b7bdc8;
    font-size: 14px
}

.impossible-method {
    background: var(--paper)
}

.impossible-quote {
    padding: 80px 0;
    background: var(--coral);
    color: #fff
}

.impossible-quote blockquote {
    margin: 0;
    max-width: 980px;
    font-size: 47px;
    line-height: 1.15;
    letter-spacing: -.04em;
    font-weight: 700
}

.impossible-quote em {
    font-style: normal;
    color: #28151a
}

.impossible-value .project-facts .button {
    margin-top: 15px
}

.impossible-contact {
    background: var(--paper)
}

@media(max-width:900px) {
    .impossible-teaser .container {
        align-items: flex-start;
        flex-direction: column
    }

    .impossible-hero {
        min-height: auto
    }

    .impossible-grid {
        grid-template-columns: 1fr 1fr
    }

    .impossible-quote blockquote {
        font-size: 38px
    }
}

@media(max-width:580px) {
    .impossible-grid {
        grid-template-columns: 1fr
    }

    .impossible-quote blockquote {
        font-size: 31px
    }

    .impossible-teaser h2 {
        font-size: 32px
    }
}

.testimonial-feature {
    background: #fff
}

.quote-grid figure {
    margin: 0;
    padding: 30px;
    background: var(--paper);
    border-top: 3px solid var(--coral);
    display: flex;
    flex-direction: column;
    min-height: 250px
}

.quote-grid blockquote {
    margin: 0 0 28px;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -.025em;
    font-weight: 700
}

.quote-grid figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto
}

.quote-grid figcaption b {
    font-size: 13px
}

.quote-grid figcaption span {
    font-size: 12px;
    color: var(--coral);
    font-weight: 700
}

.quote-grid figcaption small {
    font-size: 10px;
    color: var(--muted);
    margin-top: 7px
}

.testimonial-link {
    margin-top: 28px
}

.testimonial-page {
    background: var(--paper)
}

.quote-grid-large figure {
    background: #fff;
    min-height: 300px
}

.quote-grid-large blockquote {
    font-size: 25px
}

.evidence {
    background: #fff
}

.source-note {
    font-size: 11px;
    margin-top: 25px
}

@media(max-width:900px) {
    .quote-grid {
        grid-template-columns: 1fr
    }

    .quote-grid figure {
        min-height: auto
    }
}

@media(max-width:1160px) {
    .site-header nav {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: var(--ink);
        padding: 25px;
        flex-direction: column;
        border-top: 1px solid #ffffff17;
        box-shadow: 0 18px 35px #0004
    }

    .site-header nav.open {
        display: flex
    }

    .menu {
        display: block
    }
}

.embedded-hero {
    padding: 76px 0
}

.embedded-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 65px;
    align-items: center;
    position: relative;
    z-index: 2
}

.embedded-hero h1 {
    font-size: 59px
}

.device-system {
    position: relative;
    min-height: 440px
}

.device-hub,
.device-node {
    position: absolute;
    background: #f9fafc;
    color: var(--ink);
    border: 1px solid #ffffff55;
    box-shadow: 0 20px 60px #0006;
    border-radius: 14px;
    padding: 18px
}

.device-hub {
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    text-align: center;
    background: var(--coral);
    color: #fff;
    border-radius: 50%;
    z-index: 2
}

.device-hub:before,
.device-hub:after {
    content: "";
    position: absolute;
    width: 250px;
    height: 1px;
    background: #f1446177;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(35deg);
    z-index: -1
}

.device-hub:after {
    transform: translate(-50%, -50%) rotate(-35deg)
}

.device-system span {
    display: block;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .65
}

.device-system b {
    display: block;
    margin-top: 5px
}

.device-node.kiosk {
    left: 0;
    top: 30px;
    width: 140px;
    height: 120px;
    border-radius: 8px
}

.device-node.scanner {
    right: 5px;
    top: 42px;
    width: 120px;
    height: 170px;
    border-radius: 24px 24px 8px 8px
}

.device-node.sensor {
    left: 18px;
    bottom: 22px;
    width: 120px;
    height: 90px
}

.device-node.wearable {
    right: 20px;
    bottom: 35px;
    width: 130px;
    height: 80px;
    border-radius: 40px
}

.embedded-intro {
    background: var(--paper)
}

.embedded-devices {
    background: var(--ink);
    color: #fff
}

.embedded-devices .section-head p {
    color: #b9bec8
}

.embedded-grid article {
    background: #202634;
    border-color: #ffffff15
}

.embedded-grid article p {
    color: #b9bec8
}

.embedded-capabilities {
    background: var(--paper)
}

.embedded-capabilities .four-grid {
    grid-template-columns: repeat(4, 1fr)
}

.embedded-platforms {
    background: #fff
}

.embedded-process {
    background: var(--ink);
    color: #fff
}

.embedded-process .section-head p,
.embedded-process .four-grid p {
    color: #b9bec8
}

.embedded-process .four-grid article {
    border: 1px solid #ffffff18;
    background: #ffffff08;
    padding: 24px
}

.embedded-process .four-grid b {
    color: var(--coral)
}

@media(max-width:900px) {
    .embedded-hero-grid {
        grid-template-columns: 1fr
    }

    .device-system {
        max-width: 560px;
        width: 100%;
        margin: auto
    }

    .embedded-capabilities .four-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .embedded-hero h1 {
        font-size: 40px
    }

    .device-system {
        min-height: 360px
    }

    .device-hub {
        width: 120px;
        height: 120px
    }

    .device-node.kiosk {
        width: 112px
    }

    .device-node.scanner {
        width: 102px
    }

    .device-node.sensor {
        width: 105px
    }

    .device-node.wearable {
        width: 112px
    }

    .embedded-capabilities .four-grid {
        grid-template-columns: 1fr
    }
}

.services-page {
    text-align: center
}

.services-page .page-hero .container {
    max-width: 880px
}

.services-page .page-hero p {
    margin-left: auto;
    margin-right: auto
}

.services-page .service-card-link {
    display: block;
    text-align: center
}

.services-page .service-grid article {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%
}

.services-page .service-grid article>span {
    margin-left: auto;
    margin-right: auto
}

.services-page .service-grid article p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto
}

.services-page .service-grid article b {
    margin-top: auto;
    padding-top: 22px
}

.services-page .process .section-head {
    display: block;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto
}

.services-page .process .section-head>p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
}

.services-page .process .four-grid article {
    text-align: center
}

.services-page .service-grid.large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch
}

.services-page .service-grid.large .service-card-link {
    flex: 0 1 calc((100% - 32px)/3);
    min-width: 0
}

@media(max-width:900px) {
    .services-page .service-grid.large .service-card-link {
        flex-basis: calc((100% - 16px)/2)
    }
}

@media(max-width:580px) {
    .services-page .service-grid.large .service-card-link {
        flex-basis: 100%
    }
}

.image-spider {
    min-height: 520px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    position: relative
}

.image-spider:before,
.image-spider:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f1446188 15%, #f1446188 85%, transparent);
    transform: translate(-50%, -50%) rotate(30deg)
}

.image-spider:after {
    transform: translate(-50%, -50%) rotate(-30deg)
}

.image-spider .device-hub {
    width: 156px;
    height: 156px;
    z-index: 4
}

.image-spider .device-hub small {
    display: block;
    margin-top: 6px;
    font-size: 8px;
    color: #ffe3e8;
    letter-spacing: .03em
}

.image-node {
    position: absolute;
    margin: 0;
    width: 158px;
    z-index: 3;
    text-align: center
}

.image-node>div {
    height: 122px;
    overflow: hidden;
    border: 1px solid #ffffff28;
    border-radius: 14px;
    background: #101620;
    box-shadow: 0 18px 45px #0008
}

.image-node img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover
}

.image-node figcaption {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 10px;
    border: 1px solid #ffffff20;
    border-radius: 999px;
    background: #121722e8;
    color: #e5e8ed;
    font-size: 9px;
    font-weight: 700
}

.image-node.kiosk {
    left: 0;
    top: 18px
}

.image-node.kiosk img {
    object-position: 8% 50%;
    transform: scale(1.2)
}

.image-node.scanner {
    right: 0;
    top: 28px
}

.image-node.scanner img {
    object-position: 40% 48%;
    transform: scale(1.2)
}

.image-node.sensor {
    left: 12px;
    bottom: 22px
}

.image-node.sensor img {
    object-position: 92% 62%;
    transform: scale(1.25)
}

.image-node.wearable {
    right: 10px;
    bottom: 18px
}

.image-node.wearable img {
    object-position: 68% 64%;
    transform: scale(1.22)
}

@media(max-width:900px) {
    .image-spider {
        min-height: 500px;
        max-width: 620px
    }

    .case-study-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .case-study-hero-grid,
    .case-study-intro,
    .case-study-detail-grid {
        grid-template-columns: 1fr;
        gap: 52px
    }

    .case-study-hero-visual {
        max-width: 570px
    }
}

@media(max-width:580px) {
    .image-spider {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .image-spider:before,
    .image-spider:after {
        display: none
    }

    .image-spider .device-hub {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        height: auto;
        border-radius: 16px;
        grid-column: 1/-1;
        padding: 20px
    }

    .image-node,
    .image-node.kiosk,
    .image-node.scanner,
    .image-node.sensor,
    .image-node.wearable {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto
    }

    .image-node>div {
        height: 112px
    }

    .case-study-grid,
    .case-study-hero-grid,
    .case-study-intro,
    .case-study-detail-grid {
        grid-template-columns: 1fr
    }

    .case-study-grid {
        gap: 16px
    }

    .case-study-hero-grid,
    .case-study-intro,
    .case-study-detail-grid {
        gap: 36px
    }

    .case-study-hero h1 {
        font-size: 43px
    }

    .case-study-hero-visual {
        min-height: 310px
    }

    .case-study-hero-visual img {
        height: 300px
    }

    .system-visual.large {
        min-height: 310px
    }

    .case-study-quote {
        padding: 60px 0
    }

    .case-study-quote blockquote {
        font-size: 27px
    }
}
