    :root {
        --carbon: #0c0c0c;
        --carbon-2: #141414;
        --carbon-3: #1d1d1d;
        --paper: #f4f3ee;
        --paper-dim: #dedcd4;
        --grey: #8b8b86;
        --grey-dark: #55554f;
        --line: rgba(244, 243, 238, .13);
        --line-strong: rgba(244, 243, 238, .3);
        --line-dark: rgba(12, 12, 12, .16);
        --missed: #ff3b30;
        --answered: #2fd05a;
        --font-d: 'Montserrat', sans-serif;
        --font-m: 'JetBrains Mono', monospace;
        --max: 1200px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    button {
        background: none;
        border: 0;
        color: inherit;
        font-family: inherit;
        font-size: inherit;
        cursor: pointer;
        text-align: inherit
    }

    html {
        scroll-behavior: smooth
    }

    body {
        background: var(--carbon);
        color: var(--paper);
        font-family: var(--font-d);
        font-size: 16px;
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden
    }

    ::selection {
        background: var(--paper);
        color: var(--carbon)
    }

    a {
        color: inherit;
        text-decoration: none
    }

    button {
        font-family: inherit;
        cursor: pointer
    }

    /* grain */
    body::after {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 999;
        pointer-events: none;
        opacity: .045;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E")
    }

    /* scroll progress */
    #progress {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: var(--paper);
        z-index: 200;
        transition: width .1s linear
    }

    .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 0 28px;
        position: relative;
        z-index: 1
    }

    section {
        padding: 76px 0;
        position: relative
    }

    /* section header */
    .sec-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 24px;
        border-bottom: 1px solid var(--line);
        padding-bottom: 16px;
        margin-bottom: 18px
    }

    .eyebrow {
        font-family: var(--font-m);
        font-size: 12px;
        letter-spacing: .16em;
        color: var(--grey);
        text-transform: uppercase;
        display: flex;
        gap: 12px;
        align-items: center
    }

    .eyebrow::before {
        content: '//';
        color: var(--grey-dark);
        font-weight: 700
    }

    .sec-index {
        font-family: var(--font-m);
        font-size: 12px;
        letter-spacing: .16em;
        color: var(--grey-dark)
    }

    h2 {
        font-size: clamp(21px, 2.8vw, 32px);
        font-weight: 600;
        line-height: 1.28;
        letter-spacing: -.015em;
        margin: 22px 0 14px;
        text-wrap: balance
    }

    .lede {
        color: var(--grey);
        max-width: 540px;
        font-size: 15px;
        line-height: 1.75;
        font-weight: 400
    }

    /* corner ticks */
    .ticked {
        position: relative
    }

    .ticked i.tk {
        position: absolute;
        width: 10px;
        height: 10px;
        border-color: var(--line-strong);
        border-style: solid;
        pointer-events: none;
        transition: border-color .3s;
        z-index: 2
    }

    .tk.tl {
        top: -1px;
        left: -1px;
        border-width: 1px 0 0 1px
    }

    .tk.tr {
        top: -1px;
        right: -1px;
        border-width: 1px 1px 0 0
    }

    .tk.bl {
        bottom: -1px;
        left: -1px;
        border-width: 0 0 1px 1px
    }

    .tk.br {
        bottom: -1px;
        right: -1px;
        border-width: 0 1px 1px 0
    }

    .ticked:hover i.tk {
        border-color: var(--paper)
    }

    /* reveal */
    .rv {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity .85s cubic-bezier(.2, .7, .2, 1), transform .85s cubic-bezier(.2, .7, .2, 1)
    }

    .rv.in {
        opacity: 1;
        transform: none
    }

    .rv.d1 {
        transition-delay: .09s
    }

    .rv.d2 {
        transition-delay: .18s
    }

    .rv.d3 {
        transition-delay: .27s
    }

    /* line drawings — draw on scroll */
    .ink {
        overflow: visible
    }

    .ink path,
    .ink line,
    .ink circle,
    .ink rect,
    .ink polyline {
        fill: none;
        stroke: var(--paper);
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
    }

    .ink.on path,
    .ink.on line,
    .ink.on circle,
    .ink.on rect,
    .ink.on polyline {
        animation: draw 1.6s cubic-bezier(.3, .6, .3, 1) forwards;
    }

    .ink.on .d1 {
        animation-delay: .2s
    }

    .ink.on .d2 {
        animation-delay: .45s
    }

    .ink.on .d3 {
        animation-delay: .7s
    }

    .ink.on .d4 {
        animation-delay: .95s
    }

    .ink .thin {
        stroke-width: 1;
        stroke: var(--grey)
    }

    .ink .red {
        stroke: var(--missed)
    }

    .ink .green {
        stroke: var(--answered)
    }

    @keyframes draw {
        to {
            stroke-dashoffset: 0
        }
    }

    /* 3D tilt */
    .tilt {
        transform-style: preserve-3d;
        transition: transform .18s ease-out;
        will-change: transform
    }

    .tilt>* {
        transform: translateZ(0)
    }

    .tilt .lift {
        transition: transform .3s;
    }

    .tilt:hover .lift {
        transform: translateZ(26px)
    }

    /* ---------- NAV ---------- */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        backdrop-filter: blur(16px);
        background: rgba(12, 12, 12, .78);
        border-bottom: 1px solid var(--line);
        transform: translateY(-100%);
        animation: navDrop .7s 1.6s cubic-bezier(.2, .7, .2, 1) forwards
    }

    @keyframes navDrop {
        to {
            transform: none
        }
    }

    .nav-in {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px
    }

    .logo-link {
        display: flex;
        align-items: center
    }

    .logo-img {
        height: 30px;
        width: auto;
        display: block
    }

    .logo-img.foot {
        height: 38px
    }

    @media(max-width:940px) {
        .nav-login {
            display: none
        }

        .logo-img {
            height: 24px
        }
    }

    .nav-links {
        display: flex;
        gap: 30px;
        font-size: 13px;
        font-weight: 500
    }

    .nav-links a {
        color: var(--grey);
        transition: color .25s;
        position: relative;
        padding: 4px 0
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: var(--paper);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--paper)
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
        transform: scaleX(1)
    }

    .nav-login {
        font-family: var(--font-m);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .1em;
        color: var(--grey);
        transition: color .2s
    }

    .nav-login:hover {
        color: var(--paper)
    }

    .nav-cta {
        font-family: var(--font-m);
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: .08em;
        border: 1px solid var(--paper);
        padding: 10px 18px;
        background: none;
        color: var(--paper);
        background: none;
        color: var(--paper);
        transition: background .25s, color .25s
    }

    .nav-cta:hover {
        background: var(--paper);
        color: var(--carbon)
    }

    .burger {
        display: none;
        background: none;
        border: 0;
        color: var(--paper);
        font-size: 24px
    }

    /* ---------- HERO ---------- */
    #hero {
        min-height: 92svh;
        display: flex;
        flex-direction: column;
        padding: 120px 0 0;
        overflow: hidden
    }

    .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
        gap: 48px;
        align-items: center;
        flex: 1
    }

    #hero3d {
        position: relative;
        height: min(520px, 56vh);
        opacity: 0;
        animation: fadeIn 1.6s .4s forwards;
        pointer-events: none
    }

    #hero3d canvas {
        display: block
    }

    @keyframes fadeIn {
        to {
            opacity: 1
        }
    }

    .hero-content {
        position: relative;
        z-index: 2
    }

    .hero-eyebrow {
        font-family: var(--font-m);
        font-size: 12.5px;
        letter-spacing: .18em;
        color: var(--grey);
        opacity: 0;
        animation: fadeUp .7s .5s forwards
    }

    .hero-eyebrow b {
        color: var(--paper);
        font-weight: 700
    }

    h1 {
        font-size: clamp(26px, 3.8vw, 46px);
        font-weight: 700;
        line-height: 1.16;
        letter-spacing: -.018em;
        margin: 24px 0 22px
    }

    .h-line {
        overflow: hidden;
        display: block
    }

    .h-inner {
        display: block;
        transform: translateY(112%);
        animation: lineUp .95s cubic-bezier(.16, .8, .24, 1) forwards
    }

    .h-line:nth-child(1) .h-inner {
        animation-delay: .6s
    }

    .h-line:nth-child(2) .h-inner {
        animation-delay: .74s
    }

    .h-line:nth-child(3) .h-inner {
        animation-delay: .88s
    }

    .h-line:nth-child(2) .h-inner em {
        font-style: normal;
        color: transparent;
        -webkit-text-stroke: 1px var(--paper)
    }

    @keyframes lineUp {
        to {
            transform: none
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(16px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .hero-sub {
        color: var(--grey);
        max-width: 500px;
        font-size: 16px;
        line-height: 1.75;
        opacity: 0;
        animation: fadeUp .8s 1.2s forwards
    }

    .hero-ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 40px;
        opacity: 0;
        animation: fadeUp .8s 1.4s forwards
    }

    .btn {
        display: inline-flex;
        align-items: stretch;
        font-weight: 500;
        font-size: 13.5px;
        letter-spacing: .01em;
        border: 1px solid var(--paper);
        position: relative;
        isolation: isolate;
        background: none;
        color: var(--paper);
        padding: 0;
        transition: transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .3s;
    }

    .btn .lbl {
        position: relative;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        padding: 14px 24px
    }

    .btn .lbl::after {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--paper);
        transform: translateY(101%);
        transition: transform .35s cubic-bezier(.2, .7, .2, 1);
        z-index: 0
    }

    .btn .lbl .t1,
    .btn .lbl .t2 {
        transition: transform .35s cubic-bezier(.2, .7, .2, 1);
        white-space: nowrap
    }

    .btn .lbl .t1 {
        position: relative;
        z-index: 1
    }

    .btn .lbl .t2 {
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(calc(-50% + 160%));
        z-index: 1;
        color: var(--carbon)
    }

    .btn:hover .lbl::after {
        transform: none
    }

    .btn:hover .lbl .t1 {
        transform: translateY(-160%)
    }

    .btn:hover .lbl .t2 {
        transform: translateY(-50%)
    }

    .btn .arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        border-left: 1px solid var(--paper);
        position: relative;
        overflow: hidden;
        transition: background .2s, color .2s;
    }

    .btn .arrow i {
        font-style: normal;
        transition: transform .35s cubic-bezier(.2, .7, .2, 1)
    }

    .btn .arrow i.dup {
        position: absolute;
        transform: translateX(-220%)
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 34px rgba(0, 0, 0, .4)
    }

    .btn:hover .arrow {
        background: var(--paper);
        color: var(--carbon)
    }

    .btn:hover .arrow i {
        transform: translateX(220%)
    }

    .btn:hover .arrow i.dup {
        transform: translateX(0)
    }

    .btn:active {
        transform: translateY(-1px)
    }

    .btn.solid {
        background: var(--paper);
        color: var(--carbon)
    }

    .btn.solid .lbl::after {
        background: var(--carbon)
    }

    .btn.solid .lbl .t2 {
        color: var(--paper)
    }

    .btn.solid .arrow {
        border-color: var(--carbon)
    }

    .btn.solid:hover .arrow {
        background: var(--carbon);
        color: var(--paper)
    }

    .btn.ghost {
        border-color: var(--line-strong);
        color: var(--grey)
    }

    .btn.ghost .arrow {
        border-color: var(--line-strong)
    }

    .btn.ghost:hover {
        border-color: var(--paper);
        color: var(--paper)
    }

    .hero-foot {
        margin-top: auto;
        padding: 30px 0 22px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        border-top: 1px solid var(--line);
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--grey);
        opacity: 0;
        animation: fadeUp .8s 1.7s forwards;
        position: relative;
        z-index: 2
    }

    .dot-live {
        display: inline-block;
        width: 6px;
        height: 6px;
        background: var(--missed);
        border-radius: 50%;
        margin-right: 9px;
        animation: blink 1.4s infinite
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .15
        }
    }

    /* ---------- TICKER ---------- */
    .ticker {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        overflow: hidden;
        padding: 17px 0;
        background: var(--carbon-2);
        position: relative;
        z-index: 2
    }

    .ticker-track {
        display: flex;
        width: max-content;
        animation: scrollX 32s linear infinite
    }

    .ticker span {
        font-family: var(--font-m);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .16em;
        padding: 0 36px;
        white-space: nowrap;
        color: var(--grey)
    }

    .ticker span b {
        color: var(--paper)
    }

    .ticker span em {
        color: var(--missed);
        font-style: normal
    }

    .ticker span u {
        color: var(--answered);
        text-decoration: none
    }

    @keyframes scrollX {
        to {
            transform: translateX(-50%)
        }
    }

    .ticker:hover .ticker-track {
        animation-play-state: paused
    }

    /* ---------- QSAAS ---------- */
    .qsaas-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 38px;
        perspective: 1200px
    }

    .q-card {
        background: var(--carbon);
        padding: 34px 30px;
        transition: background .35s;
        position: relative
    }

    .q-card:hover {
        background: var(--carbon-2)
    }

    .q-card .q-ill {
        height: 72px;
        margin-bottom: 24px
    }

    .q-card h3 {
        font-size: 17px;
        font-weight: 600;
        margin: 0 0 12px
    }

    .q-card p {
        color: var(--grey);
        font-size: 14px;
        line-height: 1.7
    }

    .pull-quote {
        margin-top: 44px;
        padding-top: 30px;
        border-top: 1px solid var(--line);
        font-size: clamp(16px, 1.7vw, 20px);
        font-weight: 400;
        line-height: 1.65;
        line-height: 1.45;
        max-width: 900px;
        letter-spacing: -.012em;
        position: relative;
        padding-left: 54px
    }

    .pull-quote::before {
        content: '“';
        position: absolute;
        left: 0;
        top: 36px;
        font-size: 64px;
        font-weight: 700;
        line-height: 1;
        color: transparent;
        -webkit-text-stroke: 1.5px var(--line-strong);
    }

    /* ---------- PROBLEM ---------- */
    #problem {
        background: var(--paper);
        color: var(--carbon)
    }

    #problem .eyebrow,
    #problem .sec-index {
        color: #77756c
    }

    #problem .eyebrow::before {
        color: #b6b3a6
    }

    #problem .sec-head {
        border-color: var(--line-dark)
    }

    #problem .lede {
        color: #5d5b53
    }

    #problem .ink path,
    #problem .ink line,
    #problem .ink circle,
    #problem .ink polyline {
        stroke: var(--carbon)
    }

    #problem .ink .thin {
        stroke: #a5a297
    }

    .problem-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
        margin-top: 24px
    }

    .p-copy p {
        color: #45443d;
        font-size: 15.5px;
        line-height: 1.75;
        margin-bottom: 18px;
        max-width: 460px
    }

    .p-copy strong {
        color: var(--carbon);
        font-weight: 600
    }

    .phone-ill {
        margin: 8px 0 26px
    }

    .counter-box {
        margin-top: 24px;
        border: 1px solid var(--carbon);
        padding: 22px 28px;
        display: inline-flex;
        align-items: center;
        gap: 18px;
        background: #fff
    }

    .counter-num {
        font-size: 38px;
        font-weight: 700;
        letter-spacing: -.035em;
        font-variant-numeric: tabular-nums;
        line-height: 1
    }

    .counter-label {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .14em;
        color: #8a887e;
        text-transform: uppercase;
        line-height: 1.7
    }

    .feed {
        background: var(--carbon);
        padding: 22px;
        box-shadow: 12px 12px 0 rgba(12, 12, 12, .14);
        display: flex;
        flex-direction: column;
        gap: 12px;
        min-height: 0
    }

    .feed-head {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--grey);
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line)
    }

    .feed-item {
        border: 1px solid var(--line);
        border-left: 3px solid var(--missed);
        padding: 15px 17px;
        color: var(--paper);
        display: flex;
        justify-content: space-between;
        gap: 12px;
        transition: border-color .5s
    }

    .feed-item .n-tag {
        font-family: var(--font-m);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .13em;
        color: var(--missed);
        transition: color .5s
    }

    .feed-item .n-body {
        font-size: 13.5px;
        font-weight: 600;
        margin-top: 4px
    }

    .feed-item .n-time {
        font-family: var(--font-m);
        font-size: 10.5px;
        color: var(--grey);
        white-space: nowrap
    }

    .feed-item.caught {
        border-left-color: var(--answered)
    }

    .feed-item.caught .n-tag {
        color: var(--answered)
    }

    .p-quote {
        margin-top: 36px;
        font-size: clamp(16px, 1.7vw, 20px);
        font-weight: 500;
        letter-spacing: -.01em;
        line-height: 1.55;
        max-width: 720px
    }

    /* ---------- ENGINE ---------- */
    .engine-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 38px;
        perspective: 1200px
    }

    .e-col {
        background: var(--carbon);
        padding: 32px 32px
    }

    .e-col .e-sub {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--grey);
        text-transform: uppercase
    }

    .e-col h4 {
        font-size: 16px;
        font-weight: 600;
        margin: 8px 0 0
    }

    .e-col ul {
        list-style: none;
        margin-top: 28px
    }

    .e-col li {
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14.5px;
        color: var(--paper-dim);
        display: flex;
        gap: 12px;
        align-items: center
    }

    .e-col li::before {
        content: '—';
        color: var(--grey-dark);
        font-family: var(--font-m)
    }

    .schematic {
        margin-top: 36px;
        border: 1px solid var(--line);
        padding: 30px 28px;
        background: var(--carbon-2);
        text-align: center
    }

    .schematic svg {
        width: 100%;
        max-width: 760px;
        height: auto
    }

    .schematic .sch-label {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .22em;
        color: var(--grey-dark);
        margin-top: 20px;
        text-transform: uppercase
    }

    /* ---------- INKDESK ---------- */
    #inkdesk {
        background: var(--carbon-2);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line)
    }

    .ink-head {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 64px;
        align-items: start
    }

    .ink-head .lede {
        margin-bottom: 26px
    }

    .setup-note {
        font-family: var(--font-m);
        font-size: 11.5px;
        letter-spacing: .1em;
        color: var(--grey);
        margin-top: 14px
    }

    .mvm {
        margin-top: 48px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        border: 1px solid var(--line);
        background: var(--carbon);
        perspective: 900px
    }

    .mvm-cell {
        padding: 36px 32px;
        text-align: center;
        position: relative
    }

    .mvm-cell .mvm-word {
        font-size: clamp(18px, 2.8vw, 32px);
        font-weight: 700;
        white-space: nowrap;
        letter-spacing: -.03em;
        line-height: 1;
        display: inline-block
    }

    .mvm-cell.machine .mvm-word {
        color: var(--paper)
    }

    .mvm-cell.missed .mvm-word {
        color: transparent;
        -webkit-text-stroke: 1px var(--grey);
        transition: -webkit-text-stroke-color .8s .3s, opacity .8s .3s
    }

    .mvm.in .mvm-cell.missed .mvm-word {
        -webkit-text-stroke-color: var(--missed);
        opacity: .55;
        animation: signalFade 3.2s 1.2s ease-in-out infinite
    }

    @keyframes signalFade {

        0%,
        100% {
            opacity: .55
        }

        50% {
            opacity: .25
        }
    }

    .mvm-cell .mvm-sub {
        font-family: var(--font-m);
        font-size: 10.5px;
        letter-spacing: .2em;
        color: var(--grey);
        margin-top: 16px;
        text-transform: uppercase
    }

    .mvm-vs {
        display: flex;
        align-items: center;
        padding: 0 8px
    }

    .mvm-vs span {
        font-family: var(--font-m);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .22em;
        color: var(--missed);
        border: 1px solid var(--missed);
        padding: 12px 15px;
        background: var(--carbon)
    }

    .steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 48px;
        perspective: 1200px
    }

    .step {
        background: var(--carbon-2);
        padding: 32px 30px;
        position: relative;
        overflow: hidden
    }

    .step .s-ill {
        height: 64px;
        margin-bottom: 26px
    }

    .step .s-num {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .2em;
        color: var(--grey-dark)
    }

    .step h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 10px 0 10px
    }

    .step p {
        color: var(--grey);
        font-size: 14px;
        line-height: 1.7
    }

    .step::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: var(--paper);
        transition: width 1s cubic-bezier(.2, .7, .2, 1)
    }

    .step.in::before {
        width: 100%
    }

    .step:nth-child(2).in::before {
        transition-delay: .22s
    }

    .step:nth-child(3).in::before {
        transition-delay: .44s
    }

    .claim-band {
        margin-top: 48px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 34px;
        align-items: center;
        border: 1px solid var(--line);
        padding: 44px 42px;
        background: var(--carbon)
    }

    .claim-band h5:first-child {
        text-align: right
    }

    .claim-band h5 {
        font-size: clamp(15px, 1.5vw, 18px);
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: -.015em;
        line-height: 1.25
    }

    .claim-band h5.no {
        color: var(--grey-dark)
    }

    .claim-band .vs {
        font-family: var(--font-m);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .2em;
        color: var(--grey);
        border: 1px solid var(--line-strong);
        padding: 10px 14px
    }

    .claim-band p {
        grid-column: 1/-1;
        color: var(--grey);
        font-size: 14px;
        line-height: 1.7;
        border-top: 1px solid var(--line);
        padding-top: 22px
    }

    /* ---------- PRICING ---------- */
    .price-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 36px;
        perspective: 1400px
    }

    .plan {
        background: var(--carbon);
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        transition: background .35s;
        position: relative;
        opacity: 0;
        transform: rotateX(-14deg) translateY(46px);
        transform-origin: top;
    }

    .price-grid.in .plan {
        animation: planIn .9s cubic-bezier(.16, .8, .3, 1) forwards
    }

    .price-grid.in .plan:nth-child(2) {
        animation-delay: .15s
    }

    .price-grid.in .plan:nth-child(3) {
        animation-delay: .3s
    }

    @keyframes planIn {
        to {
            opacity: 1;
            transform: none
        }
    }

    .plan.featured::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(115deg, transparent 42%, rgba(12, 12, 12, .06) 50%, transparent 58%);
        background-size: 280% 100%;
        background-position: 120% 0;
    }

    .price-grid.in .plan.featured::before {
        animation: sheen 2.4s 1.1s ease-in-out 2
    }

    @keyframes sheen {
        50% {
            background-position: -60% 0
        }

        100% {
            background-position: -120% 0
        }
    }

    .plan:hover {
        background: var(--carbon-2)
    }

    .plan .p-name {
        font-family: var(--font-m);
        font-size: 12px;
        letter-spacing: .18em;
        color: var(--grey);
        text-transform: uppercase
    }

    .plan .p-price {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -.035em;
        margin: 22px 0 2px;
        font-variant-numeric: tabular-nums
    }

    .plan .p-per {
        font-family: var(--font-m);
        font-size: 11.5px;
        color: var(--grey);
        letter-spacing: .1em
    }

    .plan ul {
        list-style: none;
        margin: 30px 0 36px;
        flex: 1
    }

    .plan li {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
        color: var(--paper-dim)
    }

    .plan .btn {
        justify-content: center;
        width: 100%
    }

    .plan.featured {
        background: var(--paper);
        color: var(--carbon)
    }

    .plan.featured:hover {
        background: #fff
    }

    .plan.featured .p-name,
    .plan.featured .p-per {
        color: #77756c
    }

    .plan.featured li {
        border-color: var(--line-dark);
        color: #3d3c35
    }

    .plan.featured .btn {
        border-color: var(--carbon);
        color: var(--carbon)
    }

    .plan.featured .btn .lbl::after {
        background: var(--carbon)
    }

    .plan.featured .btn .lbl .t2 {
        color: var(--paper)
    }

    .plan.featured .btn .arrow {
        border-color: var(--carbon)
    }

    .plan.featured .btn:hover .arrow {
        background: var(--carbon);
        color: var(--paper)
    }

    .plan .flag {
        position: absolute;
        top: 0;
        right: 0;
        font-family: var(--font-m);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .16em;
        background: var(--carbon);
        color: var(--paper);
        padding: 9px 15px
    }

    .plan.featured .flag {
        background: var(--answered);
        color: var(--carbon)
    }

    .plan.beta .flag {
        background: transparent;
        color: var(--amber, #ffb020);
        border: 1px solid var(--amber, #ffb020);
        top: -1px;
        right: -1px
    }

    .plan.soon {
        opacity: .72
    }

    .plan.soon .flag {
        background: transparent;
        color: var(--grey);
        border: 1px solid var(--line-strong);
        top: -1px;
        right: -1px
    }

    .price-note {
        margin-top: 28px;
        font-family: var(--font-m);
        font-size: 12px;
        color: var(--grey);
        letter-spacing: .1em;
        text-align: center
    }

    /* ---------- TEAM ---------- */
    .team-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 36px;
        perspective: 1200px
    }

    .member {
        background: var(--carbon);
        padding: 36px 34px;
        transition: background .35s
    }

    .member:hover {
        background: var(--carbon-2)
    }

    .member .m-role {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .16em;
        color: var(--grey);
        text-transform: uppercase
    }

    .member h3 {
        font-size: 19px;
        font-weight: 600;
        margin: 16px 0 14px;
        letter-spacing: -.018em
    }

    .member p {
        color: var(--grey);
        font-size: 14px;
        line-height: 1.7;
        max-width: 400px
    }

    /* ---------- CONTACT ---------- */
    #contact {
        background: var(--paper);
        color: var(--carbon)
    }

    #contact .eyebrow,
    #contact .sec-index {
        color: #77756c
    }

    #contact .eyebrow::before {
        color: #b6b3a6
    }

    #contact .sec-head {
        border-color: var(--line-dark)
    }

    #contact .ink path,
    #contact .ink line,
    #contact .ink circle,
    #contact .ink polyline {
        stroke: var(--carbon)
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        margin-top: 28px
    }

    .c-form {
        display: flex;
        flex-direction: column;
        border: 1px solid var(--carbon);
        background: #fff
    }

    .c-form input,
    .c-form textarea {
        font-family: var(--font-d);
        font-size: 15px;
        padding: 18px 20px;
        border: 0;
        border-bottom: 1px solid var(--line-dark);
        background: transparent;
        color: var(--carbon);
        outline: none;
        resize: vertical
    }

    .c-form input::placeholder,
    .c-form textarea::placeholder {
        color: #9b998f;
        font-family: var(--font-m);
        font-size: 12.5px;
        letter-spacing: .08em
    }

    .c-form input:focus,
    .c-form textarea:focus {
        background: rgba(12, 12, 12, .03)
    }

    .c-form button {
        font-weight: 600;
        font-size: 14.5px;
        padding: 19px;
        background: var(--carbon);
        color: var(--paper);
        border: 0;
        letter-spacing: .02em;
        transition: letter-spacing .3s, background .3s
    }

    .c-form button:hover {
        letter-spacing: .08em
    }

    .c-side {
        display: flex;
        flex-direction: column;
        gap: 38px
    }

    .c-ill {
        margin-bottom: 6px
    }

    .c-block {
        border-top: 1px solid var(--line-dark);
        padding-top: 24px
    }

    .c-block .c-label {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .16em;
        color: #8a887e;
        text-transform: uppercase
    }

    .c-block a.c-link {
        display: inline-block;
        font-size: clamp(15px, 1.5vw, 17px);
        font-weight: 600;
        margin-top: 10px;
        letter-spacing: -.015em;
        position: relative
    }

    .c-block a.c-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        height: 2px;
        width: 100%;
        background: var(--carbon);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s
    }

    .c-block a.c-link:hover::after {
        transform: scaleX(1)
    }

    /* ---------- FOOTER ---------- */
    footer {
        padding: 48px 0 32px;
        border-top: 1px solid var(--line)
    }

    .foot-grid {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        flex-wrap: wrap
    }

    .foot-tag {
        font-family: var(--font-m);
        font-size: 12px;
        color: var(--grey);
        margin-top: 12px;
        letter-spacing: .06em
    }

    .foot-links {
        display: flex;
        gap: 28px;
        font-size: 13px;
        font-weight: 500;
        color: var(--grey)
    }

    .foot-links a:hover {
        color: var(--paper)
    }

    .foot-base {
        margin-top: 46px;
        padding-top: 22px;
        border-top: 1px solid var(--line);
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--grey);
        letter-spacing: .1em
    }

    #toTop {
        position: fixed;
        right: 26px;
        bottom: 26px;
        z-index: 90;
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .14em;
        border: 1px solid var(--line-strong);
        background: rgba(12, 12, 12, .8);
        backdrop-filter: blur(8px);
        color: var(--grey);
        padding: 12px 14px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, color .2s, border-color .2s
    }

    #toTop.show {
        opacity: 1;
        pointer-events: auto
    }

    #toTop:hover {
        color: var(--paper);
        border-color: var(--paper)
    }

    /* ---------- MODAL ---------- */
    .modal-veil {
        position: fixed;
        inset: 0;
        background: rgba(12, 12, 12, .7);
        backdrop-filter: blur(6px);
        z-index: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s
    }

    .modal-veil.open {
        opacity: 1;
        pointer-events: auto
    }

    .modal {
        background: var(--paper);
        color: var(--carbon);
        max-width: 480px;
        width: 100%;
        padding: 44px 40px;
        position: relative;
        transform: translateY(26px) rotateX(8deg) scale(.97);
        transform-origin: top;
        transition: transform .4s cubic-bezier(.2, .9, .3, 1.1)
    }

    .modal-veil.open .modal {
        transform: none
    }

    .modal .m-eyebrow {
        font-family: var(--font-m);
        font-size: 11px;
        letter-spacing: .18em;
        color: #77756c;
        font-weight: 700
    }

    .modal h3 {
        font-size: 19px;
        font-weight: 600;
        letter-spacing: -.02em;
        margin: 12px 0 8px
    }

    .modal .m-sub {
        color: #5d5b53;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 26px
    }

    .modal form {
        display: flex;
        flex-direction: column;
        gap: 14px
    }

    .modal input {
        font-family: var(--font-d);
        font-size: 15px;
        padding: 15px 16px;
        border: 1px solid var(--line-dark);
        background: #fff;
        outline: none;
        color: var(--carbon)
    }

    .modal input:focus {
        border-color: var(--carbon)
    }

    .modal button[type=submit] {
        font-weight: 600;
        font-size: 14.5px;
        padding: 16px;
        background: var(--carbon);
        color: var(--paper);
        border: 0;
        transition: letter-spacing .3s
    }

    .modal button[type=submit]:hover {
        letter-spacing: .06em
    }

    .m-close {
        position: absolute;
        top: 14px;
        right: 18px;
        background: none;
        border: 0;
        font-size: 26px;
        line-height: 1;
        color: #8a887e;
        transition: color .2s
    }

    .m-close:hover {
        color: var(--carbon)
    }

    .m-done {
        display: none;
        text-align: center;
        padding: 20px 0 6px
    }

    .m-done .tick {
        font-size: 44px;
        color: var(--answered);
        font-weight: 700
    }

    .m-done p {
        margin-top: 10px;
        color: #45443d;
        font-size: 15px
    }


    /* ---------- tabs: why / faq ---------- */
    .tabbar {
        display: flex;
        border: 1px solid var(--line-strong);
        width: max-content;
        margin-top: 34px
    }

    .tabbar button {
        font-family: var(--font-m);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .14em;
        padding: 11px 20px;
        color: var(--grey);
        transition: background .2s, color .2s;
        border-right: 1px solid var(--line);
    }

    .tabbar button:last-child {
        border-right: 0
    }

    .tabbar button.on {
        background: var(--paper);
        color: var(--carbon)
    }

    .tabbar button:not(.on):hover {
        color: var(--paper)
    }

    .tabpanel {
        display: none;
        margin-top: 34px
    }

    .tabpanel.on {
        display: block;
        animation: panelIn .45s cubic-bezier(.2, .7, .2, 1)
    }

    @keyframes panelIn {
        from {
            opacity: 0;
            transform: translateY(14px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }

    .why-prose {
        color: var(--grey);
        font-size: 14.5px;
        line-height: 1.75;
        max-width: 720px
    }

    .why-prose p {
        margin-bottom: 18px
    }

    .why-prose strong {
        color: var(--paper-dim);
        font-weight: 600
    }

    .faq-list {
        border-top: 1px solid var(--line);
        max-width: 820px
    }

    .faq-item {
        border-bottom: 1px solid var(--line)
    }

    .faq-q {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        padding: 20px 4px;
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        color: var(--paper);
        transition: color .2s
    }

    .faq-q:hover {
        color: var(--paper-dim)
    }

    .faq-q .fx {
        font-family: var(--font-m);
        font-size: 16px;
        color: var(--grey);
        transition: transform .3s;
        flex: none
    }

    .faq-item.open .fx {
        transform: rotate(45deg)
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s cubic-bezier(.2, .7, .2, 1)
    }

    .faq-a p {
        color: var(--grey);
        font-size: 14px;
        line-height: 1.75;
        padding: 0 4px 20px;
        max-width: 720px
    }



    /* ---------- onboarding wizard ---------- */
    .ob {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        margin-top: 32px
    }

    .ob-rail {
        background: var(--carbon-2);
        padding: 34px 28px;
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .ob-step {
        display: flex;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        opacity: .45;
        transition: opacity .3s
    }

    .ob-step:last-child {
        border-bottom: 0
    }

    .ob-step.on,
    .ob-step.done {
        opacity: 1
    }

    .ob-step .os-n {
        font-family: var(--font-m);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .12em;
        color: var(--grey);
        border: 1px solid var(--line-strong);
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
        transition: all .3s
    }

    .ob-step.on .os-n {
        background: var(--paper);
        color: var(--carbon);
        border-color: var(--paper)
    }

    .ob-step.done .os-n {
        color: var(--answered);
        border-color: var(--answered)
    }

    .ob-step h6 {
        font-size: 13px;
        font-weight: 600;
        color: var(--paper)
    }

    .ob-step p {
        font-family: var(--font-m);
        font-size: 9.5px;
        letter-spacing: .1em;
        color: var(--grey);
        margin-top: 2px;
        text-transform: uppercase
    }

    .ob-panel {
        background: var(--carbon);
        padding: 30px 32px;
        min-height: 330px;
        display: flex;
        flex-direction: column
    }

    .ob-prog {
        height: 2px;
        background: var(--carbon-3);
        margin-bottom: 30px;
        position: relative
    }

    .ob-prog i {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background: var(--paper);
        width: 25%;
        transition: width .5s cubic-bezier(.2, .7, .2, 1)
    }

    .ob-pane {
        display: none;
        animation: panelIn .4s cubic-bezier(.2, .7, .2, 1)
    }

    .ob-pane.on {
        display: block
    }

    .ob-pane h4 {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 6px
    }

    .ob-pane .ob-hint {
        color: var(--grey);
        font-size: 13.5px;
        margin-bottom: 24px;
        max-width: 480px
    }

    .ob-field {
        margin-bottom: 16px;
        max-width: 440px
    }

    .ob-field label {
        display: block;
        font-family: var(--font-m);
        font-size: 9.5px;
        letter-spacing: .16em;
        color: var(--grey);
        text-transform: uppercase;
        margin-bottom: 7px
    }

    .ob-field input {
        width: 100%;
        font-family: var(--font-d);
        font-size: 14.5px;
        padding: 13px 14px;
        background: var(--carbon-2);
        border: 1px solid var(--line-strong);
        color: var(--paper);
        outline: none;
        transition: border-color .2s
    }

    .ob-field input:focus {
        border-color: var(--paper)
    }

    .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        max-width: 520px
    }

    .chips button {
        font-family: var(--font-m);
        font-size: 10.5px;
        letter-spacing: .08em;
        padding: 9px 14px;
        border: 1px solid var(--line-strong);
        color: var(--grey);
        transition: all .2s
    }

    .chips button.on {
        background: var(--paper);
        color: var(--carbon);
        border-color: var(--paper)
    }

    .chips button:not(.on):hover {
        color: var(--paper)
    }

    .ob-nav {
        margin-top: auto;
        padding-top: 28px;
        display: flex;
        justify-content: space-between;
        gap: 12px
    }

    .ob-summary {
        border: 1px solid var(--line);
        padding: 22px;
        max-width: 480px;
        margin-bottom: 18px
    }

    .ob-summary .sr {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 9px 0;
        border-bottom: 1px solid var(--line);
        font-size: 13px
    }

    .ob-summary .sr:last-child {
        border-bottom: 0
    }

    .ob-summary .sr span {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .12em;
        color: var(--grey);
        text-transform: uppercase
    }

    .ob-summary .sr b {
        font-weight: 600;
        text-align: right
    }

    .vnum {
        border: 1px solid var(--answered);
        padding: 16px 20px;
        max-width: 480px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
        margin-bottom: 6px
    }

    .vnum span {
        font-family: var(--font-m);
        font-size: 9.5px;
        letter-spacing: .16em;
        color: var(--answered)
    }

    .vnum b {
        font-family: var(--font-m);
        font-size: 16px;
        font-weight: 700;
        letter-spacing: .06em
    }

    @media(max-width:940px) {
        .ob {
            grid-template-columns: 1fr
        }

        .ob-rail {
            flex-direction: row;
            overflow-x: auto;
            padding: 18px 20px
        }

        .ob-step {
            border-bottom: 0;
            border-right: 1px solid var(--line);
            padding: 0 16px;
            flex: none
        }

        .ob-step h6 {
            white-space: nowrap
        }

        .ob-step p {
            display: none
        }

        .ob-panel {
            padding: 26px 22px
        }
    }

    /* ---------- read-more expander ---------- */
    .xmore {
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s cubic-bezier(.2, .7, .2, 1)
    }

    .xmore.open {
        max-height: 1200px
    }

    .xmore-btn {
        font-family: var(--font-m);
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: .14em;
        color: var(--grey);
        border: 1px solid var(--line-strong);
        padding: 9px 14px;
        margin-top: 6px;
        transition: all .2s
    }

    .xmore-btn:hover {
        color: var(--carbon);
        background: var(--paper);
        border-color: var(--paper)
    }

    .xmore-btn span {
        display: inline-block;
        transition: transform .3s;
        margin-left: 6px
    }

    .xmore-btn.open span {
        transform: rotate(45deg)
    }

    p,
    li {
        text-wrap: pretty
    }




    /* ---------- collapsible sections ---------- */
    .foldsec {
        padding: 0
    }

    .foldsec+.foldsec {
        margin-top: -1px
    }

    .fold-head {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 22px;
        padding: 24px 0;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        text-align: left;
        transition: background .2s;
        cursor: pointer;
    }

    .fold-head:hover .fh-title {
        color: var(--paper-dim)
    }

    .fh-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--paper);
        flex: 1;
        transition: color .2s
    }

    .fh-meta {
        font-family: var(--font-m);
        font-size: 10px;
        color: var(--grey-dark);
        letter-spacing: .16em
    }

    .fh-x {
        font-family: var(--font-m);
        font-size: 18px;
        color: var(--grey);
        transition: transform .3s;
        flex: none
    }

    .foldsec.open .fh-x {
        transform: rotate(45deg)
    }

    .fold-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height .55s cubic-bezier(.2, .7, .2, 1)
    }

    .fold-inner {
        padding: 12px 0 60px
    }

    @media(max-width:940px) {
        .fh-meta {
            display: none
        }

        .fold-head {
            gap: 12px;
            padding: 20px 0
        }

        .fh-title {
            font-size: 14.5px
        }
    }

    /* ---------- collapsible sections end ---------- */
    /* ---------- live call toast ---------- */
    #callToast {
        position: fixed;
        left: 22px;
        bottom: 22px;
        z-index: 150;
        width: 290px;
        background: var(--carbon-2);
        border: 1px solid var(--line-strong);
        border-left: 3px solid var(--missed);
        padding: 14px 16px;
        box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
        transform: translateY(140%);
        transition: transform .5s cubic-bezier(.2, .9, .3, 1.1), border-color .4s;
    }

    #callToast.show {
        transform: none
    }

    #callToast.done {
        border-left-color: var(--answered)
    }

    #callToast .ct-tag {
        font-family: var(--font-m);
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: .14em;
        color: var(--missed);
        transition: color .4s
    }

    #callToast.done .ct-tag {
        color: var(--answered)
    }

    #callToast .ct-body {
        font-size: 13px;
        font-weight: 600;
        margin-top: 4px;
        color: var(--paper)
    }

    #callToast .ct-x {
        position: absolute;
        top: 6px;
        right: 10px;
        color: var(--grey);
        font-size: 15px;
        line-height: 1
    }

    #callToast .ct-x:hover {
        color: var(--paper)
    }

    @media(max-width:940px) {
        #callToast {
            width: calc(100vw - 44px);
            max-width: 290px
        }
    }

    /* ---------- live call player ---------- */
    .callbox {
        border: 1px solid var(--line);
        background: var(--carbon-2);
        margin-top: 34px;
        max-width: 860px
    }

    .callbox.spot {
        animation: spotPulse 1.2s ease 2
    }

    @keyframes spotPulse {
        50% {
            border-color: var(--answered);
            box-shadow: 0 0 0 3px rgba(47, 208, 90, .18)
        }
    }

    .cb-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid var(--line)
    }

    .cb-head .cb-title {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .16em;
        color: var(--grey)
    }

    .cb-head .cb-title b {
        color: var(--missed)
    }

    .cb-main {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 22px 20px
    }

    .cb-play {
        width: 54px;
        height: 54px;
        flex: none;
        border: 1px solid var(--paper);
        color: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: background .2s, color .2s, transform .2s;
    }

    .cb-play:hover {
        background: var(--paper);
        color: var(--carbon);
        transform: scale(1.05)
    }

    .cb-wave {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 3px;
        height: 54px;
        position: relative;
        overflow: hidden
    }

    .cb-wave i {
        flex: 1;
        background: var(--grey-dark);
        height: 18%;
        transition: background .3s
    }

    .cb-wave i.past {
        background: var(--paper)
    }

    .callbox.playing .cb-wave i {
        animation: wavepulse 1.1s ease-in-out infinite alternate
    }

    @keyframes wavepulse {
        from {
            transform: scaleY(.55)
        }

        to {
            transform: scaleY(1.5)
        }
    }

    .cb-time {
        font-family: var(--font-m);
        font-size: 11px;
        color: var(--grey);
        flex: none;
        min-width: 74px;
        text-align: right
    }

    .cb-script {
        border-top: 1px solid var(--line);
        padding: 8px 20px 16px
    }

    .cb-line {
        display: flex;
        gap: 14px;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        opacity: .45;
        transition: opacity .3s
    }

    .cb-line:last-child {
        border-bottom: 0
    }

    .cb-line.now {
        opacity: 1
    }

    .cb-line .cb-who {
        font-family: var(--font-m);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: .14em;
        padding: 4px 8px;
        border: 1px solid var(--line-strong);
        color: var(--grey);
        flex: none;
        height: max-content
    }

    .cb-line.ink .cb-who {
        color: var(--answered);
        border-color: var(--answered)
    }

    .cb-line p {
        font-size: 13.5px;
        color: var(--paper-dim);
        line-height: 1.6
    }

    .cb-note {
        font-family: var(--font-m);
        font-size: 10px;
        letter-spacing: .1em;
        color: var(--amber, #ffb020);
        padding: 12px 20px;
        border-top: 1px solid var(--line);
        display: none
    }

    .callbox.nosrc .cb-note {
        display: none
    }

    /* ---------- RESPONSIVE ---------- */
    @media(max-width:940px) {
        section {
            padding: 60px 0
        }

        .hero-grid {
            grid-template-columns: 1fr;
            gap: 10px
        }

        #hero3d {
            display: none
        }

        .qsaas-grid,
        .steps,
        .price-grid {
            grid-template-columns: 1fr
        }

        .problem-grid,
        .engine-grid,
        .ink-head,
        .team-grid,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 46px
        }

        .nav-links,
        .nav-cta {
            display: none
        }

        .burger {
            display: block
        }

        .nav-links.open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--carbon);
            border-bottom: 1px solid var(--line);
            padding: 26px 28px;
            gap: 20px
        }

        .mvm {
            grid-template-columns: 1fr
        }

        .mvm-vs {
            justify-content: center;
            padding: 0 0 30px
        }

        .claim-band {
            grid-template-columns: 1fr
        }

        .claim-band .vs {
            justify-self: start
        }

        .claim-band h5:first-child {
            text-align: left
        }

        .pull-quote {
            padding-left: 0;
            padding-top: 70px
        }

        .pull-quote::before {
            top: 26px
        }
    }

    @media(prefers-reduced-motion:reduce) {

        *,
        *::before,
        *::after {
            animation-duration: .001s !important;
            animation-delay: 0s !important;
            transition-duration: .001s !important
        }

        .rv {
            opacity: 1;
            transform: none
        }

        .plan {
            opacity: 1;
            transform: none
        }

        .ink path,
        .ink line,
        .ink circle,
        .ink rect,
        .ink polyline {
            stroke-dashoffset: 0
        }

        html {
            scroll-behavior: auto
        }

        #hero3d {
            display: none
        }
    }

    :focus-visible {
        outline: 2px solid var(--paper);
        outline-offset: 3px
    }

    #problem :focus-visible,
    #contact :focus-visible,
    .modal :focus-visible {
        outline-color: var(--carbon)
    }