:root {
    --black: #0B0F14;
    --black-soft: #141A22;
    --white: #F7F8FA;
    --pure-white: #FFFFFF;
    --red: #C8102E;
    --red-dark: #A90D26;
    --slate: #6B7280;
    --muted: #8C96A6;
    --line: #DDE2E8;
    --surface: #F2F4F7;
    --surface-dark: #111720;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom:
        1px solid rgba(11,15,20,.09);

    background:
        rgba(247,248,250,.94);

    backdrop-filter:
        blur(16px);
}

.nav-shell {
    width:
        min(
            calc(100% - 40px),
            var(--max)
        );

    min-height: 76px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-width: max-content;

    font-weight: 900;
    letter-spacing: -.02em;
}

.brand-sjk {
    color: var(--black);
}

.brand-product {
    color: var(--red);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;

    margin-left: auto;

    color: #3D4654;
    font-size: 13.65px;
    font-weight: 650;
}

.main-nav a:hover {
    color: var(--red);
}

.nav-login {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 40px;
    padding: 0 17px;

    border:
        1px solid
        rgba(11,15,20,.18);

    border-radius: 7px;

    background: var(--pure-white);

    font-size: 13.65px;
    font-weight: 750;
}

.nav-login:hover {
    border-color: var(--black);
}

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 84% 10%,
            rgba(200,16,46,.12),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F4F6F8 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    width: 600px;
    height: 600px;

    right: -320px;
    bottom: -360px;

    border:
        1px solid
        rgba(200,16,46,.12);

    border-radius: 50%;
}

.hero-shell {
    width:
        min(
            calc(100% - 40px),
            var(--max)
        );

    min-height: 700px;

    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(0,1.15fr)
        minmax(360px,.85fr);

    align-items: center;

    gap: 72px;

    padding:
        82px 0
        92px;
}

.eyebrow {
    display: inline-block;

    color: var(--red);

    font-size: 11.55px;
    font-weight: 850;
    letter-spacing: .16em;
}

.hero h1 {
    max-width: 720px;

    margin:
        17px 0
        22px;

    color: var(--black);

    font-size: clamp(
            50.4px,
            6.3vw,
            86.1px
        );

    line-height: .98;

    letter-spacing: -.055em;
}

.hero h1 span {
    color: var(--red);
}

.hero-lead {
    max-width: 700px;

    margin: 0;

    color: #4E5867;

    font-size: 18.9px;
    line-height: 1.72;
}

.hero-actions,
.final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    border-radius: 8px;

    font-size: 13.65px;
    font-weight: 800;

    transition:
        transform .15s ease,
        background .15s ease,
        border-color .15s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--red);
    color: var(--pure-white);
}

.button-primary:hover {
    background: var(--red-dark);
}

.button-secondary {
    border:
        1px solid
        rgba(11,15,20,.18);

    background: var(--pure-white);
    color: var(--black);
}

.button-outline-dark {
    border:
        1px solid
        rgba(11,15,20,.23);

    background: transparent;
    color: var(--black);
}

.button-light {
    background: var(--pure-white);
    color: var(--black);
}

.button-dark-outline {
    border:
        1px solid
        rgba(255,255,255,.42);

    color: var(--pure-white);
}

.hero-trust {
    margin-top: 42px;

    display: grid;
    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 16px;
}

.hero-trust div {
    padding-top: 15px;

    border-top:
        2px solid
        rgba(11,15,20,.10);
}

.hero-trust strong {
    display: block;

    margin-bottom: 4px;

    font-size: 13.65px;
}

.hero-trust span {
    display: block;

    color: var(--slate);

    font-size: 11.55px;
    line-height: 1.5;
}

.hero-product {
    display: flex;
    justify-content: center;
}

.product-window {
    width: 100%;
    max-width: 430px;

    overflow: hidden;

    border:
        1px solid
        rgba(11,15,20,.13);

    border-radius: 16px;

    background: var(--pure-white);

    box-shadow:
        0 34px 80px
        rgba(11,15,20,.16);
}

.window-top {
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom:
        1px solid
        rgba(11,15,20,.08);

    color: var(--slate);

    font-size: 9.45px;
    font-weight: 800;
    letter-spacing: .14em;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #CCD2D9;
}

.window-dots i:first-child {
    background: var(--red);
}

.product-content {
    position: relative;

    min-height: 485px;

    padding: 35px;
}

.small-label {
    display: block;

    margin-bottom: 10px;

    color: var(--red);

    font-size: 9.45px;
    font-weight: 850;
    letter-spacing: .15em;
}

.match-intro strong {
    display: block;

    font-size: 26.25px;
    letter-spacing: -.025em;
}

.match-intro p {
    color: var(--slate);

    font-size: 13.65px;
    line-height: 1.6;
}

.face-placeholder {
    width: 210px;
    height: 210px;

    margin: 38px auto 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(200,16,46,.26);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #F7F8FA,
            #EEF1F4
        );
}

.face-ring {
    position: relative;

    width: 118px;
    height: 118px;

    border:
        2px solid
        rgba(200,16,46,.46);

    border-radius: 50%;
}

.face-head {
    position: absolute;

    width: 43px;
    height: 43px;

    left: 50%;
    top: 20px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #B9C0C9;
}

.face-body {
    position: absolute;

    width: 75px;
    height: 38px;

    left: 50%;
    bottom: 16px;

    transform: translateX(-50%);

    border-radius:
        50px
        50px
        17px
        17px;

    background: #B9C0C9;
}

.scan-line {
    position: absolute;

    left: 73px;
    right: 73px;
    top: 291px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red),
            transparent
        );

    box-shadow:
        0 0 14px
        rgba(200,16,46,.42);
}

.match-status {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px;

    border:
        1px solid
        rgba(11,15,20,.08);

    border-radius: 10px;

    background: #FAFBFC;
}

.status-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #21A366;

    box-shadow:
        0 0 0 4px
        rgba(33,163,102,.10);
}

.match-status strong,
.match-status small {
    display: block;
}

.match-status strong {
    font-size: 12.6px;
}

.match-status small {
    margin-top: 2px;
    color: var(--slate);
    font-size: 10.5px;
}

.value-strip {
    border-top:
        1px solid
        rgba(11,15,20,.08);

    border-bottom:
        1px solid
        rgba(11,15,20,.08);

    background: var(--pure-white);
}

.value-shell {
    width:
        min(
            calc(100% - 40px),
            var(--max)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;
    gap: 19px;

    padding: 28px 0;
}

.value-item strong,
.value-item span {
    display: block;
}

.value-item strong {
    margin-bottom: 3px;

    font-size: 12.6px;
}

.value-item span {
    color: var(--slate);
    font-size: 10.5px;
    line-height: 1.5;
}

.value-arrow {
    color: #BEC5CE;
}

.section {
    padding: 105px 0;
}

.section-shell {
    width:
        min(
            calc(100% - 40px),
            var(--max)
        );

    margin: 0 auto;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 46px;
}

.section-heading h2,
.business-copy h2,
.privacy-layout h2,
.final-cta h2 {
    margin:
        13px 0
        16px;

    font-size: clamp(
            35.7px,
            4.2vw,
            55.65px
        );

    line-height: 1.08;
    letter-spacing: -.04em;
}

.section-heading p,
.business-copy p,
.privacy-copy p,
.final-cta p {
    color: var(--slate);

    font-size: 15.75px;
    line-height: 1.75;
}

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 18px;
}

.step-card {
    min-height: 245px;

    padding: 26px;

    border:
        1px solid
        var(--line);

    border-radius: 12px;

    background: var(--pure-white);
}

.step-number {
    color: var(--red);

    font-size: 11.55px;
    font-weight: 850;
}

.step-card h3 {
    margin:
        55px 0
        10px;

    font-size: 19.95px;
    letter-spacing: -.02em;
}

.step-card p {
    margin: 0;

    color: var(--slate);

    font-size: 12.6px;
    line-height: 1.65;
}

.section-dark {
    position: relative;
    overflow: hidden;

    background: var(--black);
    color: var(--pure-white);
}

.section-dark::after {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -460px;
    top: -370px;

    border:
        1px solid
        rgba(200,16,46,.28);

    border-radius: 50%;
}

.section-heading-light p {
    color: #AAB2BE;
}

.solution-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 16px;
}

.solution-card {
    min-height: 265px;

    padding: 25px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 11px;

    background:
        rgba(255,255,255,.035);
}

.solution-card:hover {
    border-color:
        rgba(200,16,46,.60);

    background:
        rgba(255,255,255,.055);
}

.solution-code {
    color: #E65B72;

    font-size: 9.45px;
    font-weight: 850;
    letter-spacing: .16em;
}

.solution-card h3 {
    margin:
        27px 0
        10px;

    font-size: 19.95px;
}

.solution-card p {
    min-height: 76px;

    margin: 0 0 19px;

    color: #AEB7C3;

    font-size: 12.6px;
    line-height: 1.65;
}

.solution-card strong {
    color: #F4F5F7;

    font-size: 10.5px;
    font-weight: 700;
}

.business-layout {
    display: grid;

    grid-template-columns:
        minmax(0,.8fr)
        minmax(480px,1.2fr);

    gap: 90px;

    align-items: start;
}

.business-copy {
    position: sticky;
    top: 115px;
}

.text-link {
    display: inline-block;

    margin-top: 15px;

    color: var(--red);

    font-size: 13.65px;
    font-weight: 800;
}

.revenue-stack {
    border-top:
        1px solid
        var(--line);
}

.revenue-stack article {
    display: grid;
    grid-template-columns:
        52px 1fr;

    gap: 18px;

    padding: 26px 0;

    border-bottom:
        1px solid
        var(--line);
}

.revenue-stack article > span {
    color: var(--red);

    font-size: 10.5px;
    font-weight: 850;
}

.revenue-stack strong {
    display: block;

    margin-bottom: 5px;

    font-size: 16.8px;
}

.revenue-stack p {
    margin: 0;

    color: var(--slate);

    font-size: 12.6px;
    line-height: 1.6;
}

.feature-band {
    padding: 64px 0;

    background: #EDEFF2;
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 1px;

    overflow: hidden;

    border:
        1px solid
        #D7DCE2;

    border-radius: 12px;

    background: #D7DCE2;
}

.feature-grid article {
    min-height: 150px;

    padding: 25px;

    background: #F7F8FA;
}

.feature-grid strong {
    display: block;

    margin-bottom: 9px;

    font-size: 14.7px;
}

.feature-grid p {
    margin: 0;

    color: var(--slate);

    font-size: 11.55px;
    line-height: 1.6;
}

.pricing-section {
    background: var(--pure-white);
}

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 15px;

    align-items: stretch;
}

.price-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 530px;

    padding: 27px;

    border:
        1px solid
        var(--line);

    border-radius: 12px;

    background: var(--pure-white);
}

.price-featured {
    border:
        2px solid
        var(--red);

    box-shadow:
        0 20px 45px
        rgba(11,15,20,.09);
}

.popular {
    position: absolute;
    top: -12px;
    left: 24px;

    padding: 5px 9px;

    border-radius: 5px;

    background: var(--red);
    color: var(--pure-white);

    font-size: 8.4px;
    font-weight: 850;
    letter-spacing: .12em;
}

.price-name {
    color: var(--slate);

    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .10em;
}

.price {
    min-height: 102px;

    display: flex;
    align-items: baseline;
    gap: 6px;

    margin-top: 18px;
}

.price span,
.price small {
    color: var(--slate);

    font-size: 10.5px;
}

.price strong {
    font-size: 38.85px;
    letter-spacing: -.04em;
}

.price-card > p {
    min-height: 64px;

    color: var(--slate);

    font-size: 12.6px;
    line-height: 1.6;
}

.price-card ul {
    flex: 1;

    margin:
        22px 0
        28px;

    padding: 0;

    list-style: none;
}

.price-card li {
    position: relative;

    padding:
        9px 0
        9px 20px;

    border-bottom:
        1px solid
        #EEF0F3;

    color: #4D5765;

    font-size: 11.55px;
}

.price-card li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--red);
    font-weight: 900;
}

.pricing-note {
    margin:
        23px 0
        0;

    color: var(--slate);

    font-size: 10.5px;
}

.privacy-section {
    background: #F0F2F5;
}

.privacy-layout {
    display: grid;

    grid-template-columns:
        minmax(0,.85fr)
        minmax(420px,1.15fr);

    gap: 90px;

    align-items: start;
}

.privacy-copy {
    padding-top: 22px;
}

.privacy-copy p:first-child {
    margin-top: 0;
}

.privacy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 27px;
}

.privacy-points span {
    padding: 8px 11px;

    border:
        1px solid
        #D5DAE1;

    border-radius: 100px;

    background: var(--pure-white);

    color: #4C5665;

    font-size: 10.5px;
    font-weight: 700;
}

.final-cta {
    padding: 100px 0;

    background: var(--red);
    color: var(--pure-white);
}

.final-shell {
    width:
        min(
            calc(100% - 40px),
            860px
        );

    margin: 0 auto;

    text-align: center;
}

.final-cta .eyebrow {
    color: rgba(255,255,255,.75);
}

.final-cta h2 {
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    color:
        rgba(255,255,255,.82);
}

.final-actions {
    justify-content: center;
}

.footer {
    padding: 46px 0;

    background: var(--black);
    color: var(--pure-white);
}

.footer-shell {
    width:
        min(
            calc(100% - 40px),
            var(--max)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 50px;

    align-items: end;
}

.footer strong {
    font-size: 13.65px;
    letter-spacing: .04em;
}

.footer p,
.footer-company {
    color: #818B99;
    font-size: 10.5px;
}

.footer-links {
    display: flex;
    gap: 18px;

    color: #ADB5C0;

    font-size: 10.5px;
}

.footer-links a:hover {
    color: var(--pure-white);
}

@media (max-width: 1040px) {

    .main-nav {
        display: none;
    }

    .nav-login {
        margin-left: auto;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy {
        max-width: 790px;
    }

    .hero-product {
        justify-content: flex-start;
    }

    .steps-grid,
    .pricing-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .solution-grid,
    .feature-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .business-layout,
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .business-copy {
        position: static;
    }

}

@media (max-width: 700px) {

    .nav-shell {
        min-height: 66px;
    }

    .brand {
        font-size: 13.65px;
    }

    .nav-login {
        min-height: 36px;
        padding: 0 12px;
        font-size: 11.55px;
    }

    .hero-shell {
        min-height: auto;

        padding:
            62px 0
            68px;
    }

    .hero h1 {
        font-size: 53.55px;
    }

    .hero-lead {
        font-size: 15.75px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .product-window {
        max-width: 100%;
    }

    .value-shell {
        grid-template-columns: 1fr;
        gap: 18px;

        padding: 30px 0;
    }

    .value-arrow {
        display: none;
    }

    .section {
        padding: 76px 0;
    }

    .steps-grid,
    .solution-grid,
    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: auto;
    }

    .price-card {
        min-height: auto;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}

/* ============================================================
   SJK TYPOGRAPHY SYNC R2 START
   ============================================================ */

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-weight: 400;
    letter-spacing: 0;
}

h1,
h2,
h3,
.brand,
.main-nav,
.nav-actions,
.button,
.eyebrow,
.price-name,
.solution-code,
.step-number,
.popular,
.window-top,
.small-label,
.footer strong {
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.hero h1 {
    max-width: 700px;

    font-size: clamp(
            48.3px,
            5.67vw,
            75.6px
        );

    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -.038em;
}

.section-heading h2,
.business-copy h2,
.privacy-layout h2,
.final-cta h2 {
    font-size: clamp(
            33.6px,
            3.78vw,
            50.4px
        );

    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.032em;
}

.step-card h3,
.solution-card h3,
.revenue-stack strong,
.feature-grid strong,
.match-intro strong {
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-weight: 650;
    letter-spacing: -.018em;
}

.hero-lead {
    max-width: 680px;

    font-size: 17.85px;
    font-weight: 400;
    line-height: 1.68;
}

.section-heading p,
.business-copy p,
.privacy-copy p,
.final-cta p {
    font-size: 15.75px;
    font-weight: 400;
    line-height: 1.72;
}

.main-nav {
    font-size: 13.65px;
    font-weight: 600;
}

.brand {
    font-weight: 700;
    letter-spacing: -.018em;
}

.eyebrow,
.solution-code,
.price-name,
.small-label,
.window-top {
    font-weight: 700;
    letter-spacing: .13em;
}

.button,
.nav-login,
.nav-demo {
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-weight: 650;
    letter-spacing: -.008em;
}

.price strong {
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-weight: 700;
    letter-spacing: -.035em;
}

.price-card li,
.solution-card p,
.step-card p,
.feature-grid p,
.revenue-stack p,
.hero-trust span,
.match-status small {
    font-family:
        "Inter",
        sans-serif;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 17px;

    border: 1px solid #C8102E;
    border-radius: 7px;

    background: #C8102E;
    color: #FFFFFF;

    font-size: 13.65px;
}

.nav-demo:hover {
    background: #A90D26;
    border-color: #A90D26;
}

.final-client-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 9px;

    color: rgba(255,255,255,.88);

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size: 12.6px;
    font-weight: 600;
}

.final-client-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

@media (max-width: 700px) {

    .hero h1 {
        font-size: 48.3px;
        letter-spacing: -.032em;
    }

    .nav-actions {
        gap: 6px;
    }

    .nav-demo,
    .nav-login {
        min-height: 36px;
        padding: 0 10px;
        font-size: 10.5px;
    }

}

/* ============================================================
   SJK TYPOGRAPHY SYNC R2 END
   ============================================================ */

/* SJK TYPOGRAPHY SCALE R3 APPLIED */

/* ============================================================
   SJK PHOTOMATCH WORDMARK R3
   Product-family brand emphasis
   ============================================================ */

.brand {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.025em;
}

.brand-sjk {
    font-weight: 700;
}

.brand-product {
    font-weight: 700;
}

@media (max-width: 700px) {

    .brand {
        font-size: 17px;
    }

}

/* ============================================================
   SJK PHOTOMATCH WORDMARK R3 END
   ============================================================ */


/* ==================================================================
   SJK_PHOTOMATCH_REQUEST_DEMO_R1_BEGIN
   ================================================================== */

button.nav-demo,
button.button[data-demo-open] {
    appearance:none;
    font:inherit;
    cursor:pointer;
}

button.nav-demo {
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body.demo-modal-open {
    overflow:hidden;
}

.demo-modal[hidden] {
    display:none !important;
}

.demo-modal {
    position:fixed;
    inset:0;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
}

.demo-modal-backdrop {
    position:absolute;
    inset:0;
    background:rgba(5,8,13,.72);
    backdrop-filter:blur(7px);
}

.demo-modal-card {
    position:relative;
    z-index:1;
    width:min(760px,100%);
    max-height:calc(100vh - 48px);
    overflow-y:auto;
    border:1px solid rgba(11,15,20,.13);
    border-radius:16px;
    background:#FFFFFF;
    box-shadow:
        0 35px 100px
        rgba(0,0,0,.32);
}

.demo-modal-close {
    position:absolute;
    top:15px;
    right:16px;
    z-index:2;
    width:38px;
    height:38px;
    border:0;
    border-radius:50%;
    background:#F2F4F7;
    color:#344054;
    cursor:pointer;
    font-size:24px;
    font-weight:300;
    line-height:1;
}

.demo-modal-close:hover {
    background:#E7EAEF;
    color:#0B0F14;
}

.demo-modal-heading {
    padding:34px 38px 23px;
    border-bottom:1px solid #E7EAEF;
}

.demo-modal-heading h2 {
    max-width:620px;
    margin:10px 48px 8px 0;
    color:#0B0F14;
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;
    font-size:30px;
    font-weight:700;
    line-height:1.15;
    letter-spacing:-.025em;
}

.demo-modal-heading p {
    max-width:650px;
    margin:0;
    color:#667085;
    font-size:13px;
    line-height:1.65;
}

.demo-request-form {
    padding:27px 38px 34px;
}

.demo-form-grid {
    display:grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));
    gap:18px;
}

.demo-field {
    display:block;
}

.demo-field > span {
    display:block;
    margin-bottom:7px;
    color:#344054;
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;
    font-size:12px;
    font-weight:600;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
    width:100%;
    border:1px solid #CCD3DC;
    border-radius:7px;
    outline:none;
    background:#FFFFFF;
    color:#0B0F14;
    font:inherit;
    font-size:13px;
    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.demo-field input,
.demo-field select {
    height:44px;
    padding:0 12px;
}

.demo-field textarea {
    min-height:105px;
    padding:11px 12px;
    resize:vertical;
    line-height:1.55;
}

.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
    border-color:#C8102E;
    box-shadow:
        0 0 0 3px
        rgba(200,16,46,.10);
}

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

.demo-consent {
    display:flex;
    align-items:flex-start;
    gap:9px;
    margin-top:20px;
    color:#667085;
    font-size:11px;
    line-height:1.5;
}

.demo-consent input {
    flex:0 0 auto;
    width:16px;
    height:16px;
    margin-top:1px;
    accent-color:#C8102E;
}

.demo-form-actions {
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
}

.demo-form-actions .button {
    border:0;
    cursor:pointer;
}

.demo-form-actions .button:disabled {
    cursor:wait;
    opacity:.65;
}

.demo-cancel {
    border:1px solid #D3D8E0 !important;
    background:#FFFFFF;
    color:#344054;
}

.demo-cancel:hover {
    background:#F5F6F8;
}

.demo-form-status {
    min-height:0;
    margin-top:16px;
    padding:0;
    font-size:12px;
    line-height:1.5;
}

.demo-form-status.is-success,
.demo-form-status.is-error {
    padding:11px 13px;
    border-radius:7px;
}

.demo-form-status.is-success {
    border:1px solid #B8E2CB;
    background:#EAF8F0;
    color:#08794B;
}

.demo-form-status.is-error {
    border:1px solid #F0C1CA;
    background:#FFF2F4;
    color:#A4122F;
}

.demo-hp {
    position:absolute !important;
    left:-10000px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
}

@media (max-width:700px) {

    .demo-modal {
        align-items:flex-end;
        padding:10px;
    }

    .demo-modal-card {
        max-height:calc(100vh - 20px);
        border-radius:14px;
    }

    .demo-modal-heading {
        padding:
            27px
            22px
            20px;
    }

    .demo-modal-heading h2 {
        font-size:25px;
    }

    .demo-request-form {
        padding:
            22px
            22px
            28px;
    }

    .demo-form-grid {
        grid-template-columns:1fr;
        gap:15px;
    }

    .demo-field-full {
        grid-column:auto;
    }

    .demo-form-actions {
        align-items:stretch;
        flex-direction:column;
    }

    .demo-form-actions .button {
        width:100%;
    }

}

/* ==================================================================
   SJK_PHOTOMATCH_REQUEST_DEMO_R1_END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH TYPOGRAPHY HIERARCHY R5
   Professional numeric hierarchy / solution labels / footer
   ================================================================== */


/* ------------------------------------------------------------------
   01. HOW IT WORKS — LARGE CALENDAR-STYLE NUMBERS
   ------------------------------------------------------------------ */

.step-card {
    position: relative;
    min-height: 270px;
    padding: 27px 27px 29px;
}

.step-number {
    display: block;

    color: #C8102E;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 46px;
    font-weight: 650;
    line-height: .92;

    letter-spacing: -.055em;

    font-variant-numeric:
        tabular-nums lining-nums;

    font-feature-settings:
        "tnum" 1,
        "lnum" 1;

    -webkit-font-smoothing: antialiased;
}

.step-card h3 {
    margin:
        38px 0
        11px;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size: 20px;
    font-weight: 650;
    letter-spacing: -.022em;
}


/* ------------------------------------------------------------------
   02. SOLUTIONS — RED CATEGORY TITLES
   ------------------------------------------------------------------ */

.solution-code {
    display: block;

    color: #F03A58;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: .075em;

    text-transform: uppercase;

    -webkit-font-smoothing: antialiased;
}

.solution-card h3 {
    margin:
        29px 0
        11px;

    font-size: 21px;
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -.025em;
}


/* ------------------------------------------------------------------
   03. BUSINESS / REVENUE — LARGE CALENDAR-STYLE NUMBERS
   ------------------------------------------------------------------ */

.revenue-stack article {
    grid-template-columns:
        82px
        minmax(0,1fr);

    gap: 22px;

    min-height: 112px;

    padding:
        27px 0
        28px;
}

.revenue-stack article > span {
    display: block;

    padding-top: 2px;

    color: #C8102E;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 38px;
    font-weight: 650;
    line-height: .95;

    letter-spacing: -.05em;

    font-variant-numeric:
        tabular-nums lining-nums;

    font-feature-settings:
        "tnum" 1,
        "lnum" 1;

    -webkit-font-smoothing: antialiased;
}

.revenue-stack strong {
    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size: 18px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: -.018em;
}


/* ------------------------------------------------------------------
   04. FOOTER — STRONGER PRODUCT IDENTITY
   ------------------------------------------------------------------ */

.footer {
    padding:
        58px 0
        55px;
}

.footer-shell {
    align-items: center;
    gap: 58px;
}

.footer strong {
    display: block;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;

    letter-spacing: -.018em;
}

.footer p {
    max-width: 420px;

    margin:
        12px 0
        0;

    color: #9BA5B3;

    font-family:
        "Inter",
        sans-serif;

    font-size: 13px;
    line-height: 1.55;
}

.footer-links {
    gap: 24px;

    color: #C1C8D1;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size: 13px;
    font-weight: 550;
}

.footer-links a {
    transition:
        color .15s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-company {
    color: #98A2B3;

    font-family:
        "Inter",
        sans-serif;

    font-size: 12px;
    font-weight: 450;

    white-space: nowrap;
}


/* ------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------ */

@media (max-width: 700px) {

    .step-number {
        font-size: 40px;
    }

    .step-card h3 {
        margin-top: 30px;
    }

    .solution-code {
        font-size: 13px;
    }

    .solution-card h3 {
        font-size: 20px;
    }

    .revenue-stack article {
        grid-template-columns:
            68px
            minmax(0,1fr);

        gap: 15px;
    }

    .revenue-stack article > span {
        font-size: 33px;
    }

    .footer {
        padding:
            47px 0
            44px;
    }

    .footer strong {
        font-size: 19px;
    }

    .footer p {
        font-size: 13px;
    }

    .footer-links {
        gap:
            12px
            20px;

        font-size: 13px;
    }

    .footer-company {
        font-size: 12px;
        white-space: normal;
    }

}

/* ==================================================================
   SJK PHOTOMATCH TYPOGRAPHY HIERARCHY R5 END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH SOLUTIONS PRESTIGE R6
   Premium enterprise presentation for the core solutions section
   ================================================================== */


/* ------------------------------------------------------------------
   SECTION HEADER
   ------------------------------------------------------------------ */

.solutions,
.solution-section {
    position: relative;
    isolation: isolate;
}

.solutions .eyebrow,
.solutions .section-eyebrow,
.solution-section .eyebrow,
.solution-section .section-eyebrow {
    color: #F03A58;
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}

.solutions h2,
.solution-section h2 {
    max-width: 1040px;
    margin-top: 18px;
    color: #F7F8FA;
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.06em;
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
}

.solutions h2 + p,
.solution-section h2 + p,
.solutions .section-copy p,
.solution-section .section-copy p,
.solutions .section-intro p,
.solution-section .section-intro p {
    max-width: 920px;
    margin-top: 24px;
    color: #B2BECC;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -.012em;
}


/* ------------------------------------------------------------------
   GRID SPACING
   ------------------------------------------------------------------ */

.solutions-grid,
.solution-grid {
    margin-top: 42px;
    gap: 28px;
}


/* ------------------------------------------------------------------
   PREMIUM SOLUTION CARDS
   ------------------------------------------------------------------ */

.solution-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 370px;
    padding: 30px 30px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        linear-gradient(
            180deg,
            rgba(19,25,35,.96) 0%,
            rgba(12,17,26,.98) 100%
        );
    box-shadow:
        0 16px 36px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.03);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            rgba(200,16,46,1) 0%,
            rgba(240,58,88,.95) 46%,
            rgba(240,58,88,0) 100%
        );
    opacity: .96;
}

.solution-card::after {
    content: "";
    position: absolute;
    top: -58px;
    right: -58px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(200,16,46,.14) 0%,
            rgba(200,16,46,0) 72%
        );
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240,58,88,.34);
    box-shadow:
        0 22px 54px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.04);
}


/* ------------------------------------------------------------------
   RED CATEGORY TITLES
   ------------------------------------------------------------------ */

.solution-code {
    display: block;
    color: #FF4866;
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .11em;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
}


/* ------------------------------------------------------------------
   CARD TITLE / BODY / CLOSING STATEMENT
   ------------------------------------------------------------------ */

.solution-card h3 {
    margin:
        30px 0
        14px;
    color: #FFFFFF;
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 23px;
    font-weight: 680;
    line-height: 1.18;
    letter-spacing: -.03em;
    text-wrap: balance;
    -webkit-font-smoothing: antialiased;
}

.solution-card p {
    max-width: 34ch;
    margin: 0;
    color: #B7C3D1;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -.01em;
}

.solution-card strong {
    display: block;
    margin-top: auto;
    padding-top: 28px;
    color: #F8FAFC;
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
    letter-spacing: -.012em;
}

.solution-card strong::before {
    content: "COMMERCIAL FIT";
    display: block;
    margin-bottom: 9px;
    color: #7F8A9A;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .13em;
    text-transform: uppercase;
}


/* ------------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------------ */

@media (max-width: 1100px) {

    .solutions h2,
    .solution-section h2 {
        font-size: 58px;
    }

    .solutions h2 + p,
    .solution-section h2 + p,
    .solutions .section-copy p,
    .solution-section .section-copy p,
    .solutions .section-intro p,
    .solution-section .section-intro p {
        font-size: 19px;
    }

}

@media (max-width: 700px) {

    .solutions h2,
    .solution-section h2 {
        font-size: 42px;
        line-height: 1.04;
    }

    .solutions h2 + p,
    .solution-section h2 + p,
    .solutions .section-copy p,
    .solution-section .section-copy p,
    .solutions .section-intro p,
    .solution-section .section-intro p {
        font-size: 17px;
        line-height: 1.6;
    }

    .solutions-grid,
    .solution-grid {
        gap: 18px;
    }

    .solution-card {
        min-height: auto;
        padding: 24px 22px 23px;
        border-radius: 16px;
    }

    .solution-code {
        font-size: 14px;
    }

    .solution-card h3 {
        margin-top: 24px;
        font-size: 21px;
    }

    .solution-card p {
        font-size: 15px;
        line-height: 1.68;
    }

    .solution-card strong {
        padding-top: 22px;
        font-size: 12px;
    }

}

/* ==================================================================
   SJK PHOTOMATCH SOLUTIONS PRESTIGE R6 END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH PHOTO-FIRST HERO R7
   Professional event-photography presentation
   ================================================================== */


/* ------------------------------------------------------------------
   HERO ENVIRONMENT
   ------------------------------------------------------------------ */

.hero {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 79% 21%,
            rgba(200,16,46,.085),
            transparent 31%
        ),
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F4F5F7 100%
        );
}

.hero-shell {
    width:
        min(
            calc(100% - 48px),
            1240px
        );

    min-height: 720px;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(410px,.92fr);

    gap: 78px;

    padding:
        82px 0
        88px;
}


/* ------------------------------------------------------------------
   PROFESSIONAL TYPOGRAPHY
   ------------------------------------------------------------------ */

.hero .eyebrow {
    color:#C8102E;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:13px;
    font-weight:750;
    line-height:1;

    letter-spacing:.115em;
}

.hero h1 {
    max-width:760px;

    margin:
        20px 0
        26px;

    color:#0B0F14;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:
        clamp(
            58px,
            5.65vw,
            80px
        );

    font-weight:700;
    line-height:.99;

    letter-spacing:-.052em;

    text-wrap:balance;
}

.hero h1 span {
    display:block;

    margin-top:4px;

    color:#C8102E;
}

.hero-lead {
    max-width:710px;

    color:#4E5969;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:18px;
    font-weight:400;
    line-height:1.72;

    letter-spacing:-.008em;
}


/* ------------------------------------------------------------------
   CTA
   ------------------------------------------------------------------ */

.hero-actions {
    margin-top:31px;
    gap:12px;
}

.hero-actions .button {
    min-height:50px;
    padding:0 22px;

    border-radius:7px;

    font-size:14px;
    font-weight:650;
}


/* ------------------------------------------------------------------
   PHOTOGRAPHY TRUST STRIP
   ------------------------------------------------------------------ */

.hero-trust {
    margin-top:44px;
    gap:18px;
}

.hero-trust div {
    padding-top:17px;
    border-top:
        1px solid
        #CED4DC;
}

.hero-trust strong {
    margin-bottom:6px;

    color:#111827;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:14px;
    font-weight:650;
}

.hero-trust span {
    color:#667085;

    font-size:12px;
    line-height:1.55;
}


/* ------------------------------------------------------------------
   PREMIUM PRODUCT WINDOW
   ------------------------------------------------------------------ */

.product-window {
    max-width:475px;

    border:
        1px solid
        rgba(11,15,20,.12);

    border-radius:14px;

    background:#FFFFFF;

    box-shadow:
        0 38px 90px
        rgba(11,15,20,.18);
}

.window-top {
    height:52px;

    padding:
        0 19px;

    color:#758195;

    font-size:10px;
}

.product-content {
    min-height:520px;
    padding:
        33px
        34px
        34px;
}

.match-intro strong {
    color:#0B0F14;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:27px;
    font-weight:680;

    letter-spacing:-.027em;
}

.match-intro p {
    max-width:390px;

    margin-top:10px;

    color:#667085;

    font-size:13px;
    line-height:1.65;
}


/* ------------------------------------------------------------------
   EDITORIAL CONTACT SHEET
   ------------------------------------------------------------------ */

.photo-contact-sheet {
    position:relative;

    display:grid;

    grid-template-columns:
        minmax(0,1.5fr)
        minmax(120px,.8fr);

    gap:9px;

    margin-top:29px;
}

.photo-side-stack {
    display:grid;
    grid-template-rows:
        1fr
        1fr;

    gap:9px;
}

.photo-frame {
    position:relative;

    overflow:hidden;

    border-radius:7px;

    border:
        1px solid
        rgba(255,255,255,.08);

    background:#151A21;
}

.photo-frame-main {
    min-height:248px;

    background:
        radial-gradient(
            circle at 48% 37%,
            rgba(235,219,190,.36),
            transparent 17%
        ),
        radial-gradient(
            circle at 70% 25%,
            rgba(200,16,46,.28),
            transparent 29%
        ),
        linear-gradient(
            145deg,
            #202733 0%,
            #11161D 48%,
            #090D12 100%
        );
}

.photo-frame-secondary {
    min-height:119px;

    background:
        radial-gradient(
            circle at 67% 34%,
            rgba(250,240,214,.42),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #35383C,
            #171B20 58%,
            #0C1015
        );
}

.photo-frame-tertiary {
    min-height:119px;

    background:
        radial-gradient(
            circle at 34% 38%,
            rgba(200,16,46,.46),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            #242A33,
            #10151C 65%
        );
}

.photo-frame::before {
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.50)
        );
}

.photo-frame-label {
    position:absolute;

    z-index:3;

    left:12px;
    bottom:10px;

    color:
        rgba(255,255,255,.77);

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:9px;
    font-weight:700;

    letter-spacing:.12em;
}


/* ------------------------------------------------------------------
   ABSTRACT SUBJECT SILHOUETTES
   These deliberately read as photographic placeholders rather than
   a biometric scanner UI.
   ------------------------------------------------------------------ */

.photo-subject {
    position:absolute;

    left:50%;
    bottom:16px;

    width:120px;
    height:182px;

    transform:
        translateX(-50%);
}

.photo-subject i {
    position:absolute;

    top:13px;
    left:50%;

    width:52px;
    height:52px;

    transform:
        translateX(-50%);

    border-radius:50%;

    background:
        rgba(215,220,225,.55);

    box-shadow:
        0 4px 22px
        rgba(0,0,0,.18);
}

.photo-subject b {
    position:absolute;

    left:50%;
    bottom:0;

    width:104px;
    height:112px;

    transform:
        translateX(-50%);

    border-radius:
        53px
        53px
        17px
        17px;

    background:
        linear-gradient(
            180deg,
            rgba(195,202,210,.54),
            rgba(113,123,136,.54)
        );
}

.photo-subject-small {
    bottom:5px;

    width:70px;
    height:100px;

    opacity:.72;
}

.photo-subject-small i {
    top:7px;

    width:29px;
    height:29px;
}

.photo-subject-small b {
    width:58px;
    height:62px;

    border-radius:
        30px
        30px
        10px
        10px;
}


/* ------------------------------------------------------------------
   MATCHED-GALLERY RESULT
   ------------------------------------------------------------------ */

.photo-match-badge {
    grid-column:
        1 / -1;

    display:flex;
    align-items:center;
    gap:12px;

    margin-top:3px;

    min-height:66px;

    padding:
        13px
        15px;

    border:
        1px solid
        #E1E5EA;

    border-radius:8px;

    background:#F8F9FA;
}

.photo-match-dot {
    width:10px;
    height:10px;

    flex:
        0 0 auto;

    border-radius:50%;

    background:#20A566;

    box-shadow:
        0 0 0 4px
        rgba(32,165,102,.11);
}

.photo-match-badge strong,
.photo-match-badge small {
    display:block;
}

.photo-match-badge strong {
    color:#111827;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:13px;
    font-weight:650;
}

.photo-match-badge small {
    margin-top:3px;

    color:#7A8697;

    font-size:10px;
}


/* ------------------------------------------------------------------
   PROFESSIONAL WORKFLOW STRIP
   ------------------------------------------------------------------ */

.value-strip {
    background:#FFFFFF;

    border-top:
        1px solid
        #E2E6EB;

    border-bottom:
        1px solid
        #E2E6EB;
}

.value-shell {
    min-height:114px;

    padding:
        28px 0;
}

.value-item strong {
    color:#0B0F14;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:14px;
    font-weight:700;
}

.value-item span {
    margin-top:5px;

    color:#697586;

    font-size:11px;
    line-height:1.55;
}

.value-arrow {
    color:#AEB7C2;

    font-size:17px;
}


/* ------------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------------ */

@media (max-width:1040px) {

    .hero-shell {
        grid-template-columns:1fr;
        gap:52px;
    }

    .hero-product {
        justify-content:flex-start;
    }

}

@media (max-width:700px) {

    .hero-shell {
        width:
            min(
                calc(100% - 36px),
                1240px
            );

        padding:
            58px 0
            66px;
    }

    .hero h1 {
        font-size:48px;
        line-height:1.01;
    }

    .hero-lead {
        font-size:16px;
    }

    .product-window {
        width:100%;
    }

    .product-content {
        min-height:auto;
        padding:
            27px
            22px
            25px;
    }

    .photo-contact-sheet {
        grid-template-columns:
            1fr
            110px;
    }

    .photo-frame-main {
        min-height:215px;
    }

    .photo-frame-secondary,
    .photo-frame-tertiary {
        min-height:103px;
    }

    .value-shell {
        min-height:auto;
    }

}

/* ==================================================================
   SJK PHOTOMATCH PHOTO-FIRST HERO R7 END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH PROFESSIONAL WORDMARK R8
   Product-family identity
   ================================================================== */

.brand {
    display:inline-flex;
    align-items:center;
    gap:0;

    min-width:max-content;

    color:#0B0F14;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:25px;
    font-weight:600;
    line-height:1;

    letter-spacing:-.035em;

    text-decoration:none;

    -webkit-font-smoothing:antialiased;
    text-rendering:geometricPrecision;
}


/*
 * Parent company identifier.
 * Stronger and slightly more compact.
 */

.brand-sjk {
    color:#0B0F14;

    font-size:.88em;
    font-weight:760;

    letter-spacing:-.045em;
}


/*
 * Fine architectural divider.
 * Separates company identity from product name without
 * creating another visual logo element.
 */

.brand-divider {
    width:1px;
    height:21px;

    margin:
        0
        11px
        0
        12px;

    background:#C8CDD5;
}


/*
 * Product name.
 *
 * Title case deliberately replaces PHOTOMATCH.
 * This makes the identity read as a professional product
 * rather than a promotional badge.
 */

.brand-product {
    color:#C8102E;

    font-size:1em;
    font-weight:620;

    letter-spacing:-.035em;
}


/*
 * Subtle interaction only.
 * No scaling / glowing / playful animation.
 */

.brand:hover .brand-product {
    color:#A90D27;
}


/* ------------------------------------------------------------------
   Header geometry adjusted for the stronger wordmark.
   ------------------------------------------------------------------ */

.nav-shell {
    min-height:78px;
}


/* ------------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------------ */

@media (max-width:700px) {

    .brand {
        font-size:21px;
    }

    .brand-divider {
        height:18px;

        margin:
            0
            8px
            0
            9px;
    }

}

/* ==================================================================
   SJK PHOTOMATCH PROFESSIONAL WORDMARK R8 END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH MASTER BRAND R9

   Brand architecture:
       SJK master mark  -> corporate/product-family identity
       PhotoMatch       -> product name

   SJK geometry is never recreated in typography.
   ================================================================== */


/* ------------------------------------------------------------------
   HEADER LOCKUP
   ------------------------------------------------------------------ */

.brand {
    display:inline-flex;
    align-items:center;
    gap:15px;

    min-width:max-content;

    text-decoration:none;

    font-size:initial;
    line-height:1;
}

.brand-master-logo {
    display:block;

    width:auto;
    height:47px;

    flex:0 0 auto;

    object-fit:contain;
}

.brand-divider,
.brand-sjk {
    display:none !important;
}

.brand-product {
    color:#C8102E;

    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size:25px;
    font-weight:680;

    line-height:1;

    letter-spacing:-.035em;

    text-transform:none;

    -webkit-font-smoothing:antialiased;
    text-rendering:geometricPrecision;
}

.brand:hover .brand-product {
    color:#A90D27;
}

.nav-shell {
    min-height:84px;
}


/* ------------------------------------------------------------------
   FOOTER PRODUCT LOCKUP
   ------------------------------------------------------------------ */

.footer-brand-lockup {
    display:flex;
    align-items:center;
    gap:13px;
}

.footer-master-mark {
    display:flex;
    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    padding:5px 7px;

    border-radius:4px;

    background:#F7F8FA;
}

.footer-master-mark img {
    display:block;

    width:auto;
    height:33px;

    object-fit:contain;
}

.footer-brand-lockup strong {
    margin:0;

    color:#FFFFFF;

    font-family:
        "Inter Tight",
        "Inter",
        sans-serif;

    font-size:20px;
    font-weight:650;

    line-height:1;

    letter-spacing:-.025em;
}

.footer-company {
    color:#98A2B3;

    font-size:12px;
}


/* ------------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------------ */

@media (max-width:700px) {

    .brand {
        gap:10px;
    }

    .brand-master-logo {
        height:37px;
    }

    .brand-product {
        font-size:20px;
    }

    .nav-shell {
        min-height:72px;
    }

    .footer-master-mark img {
        height:29px;
    }

    .footer-brand-lockup strong {
        font-size:18px;
    }

}

/* ==================================================================
   SJK PHOTOMATCH MASTER BRAND R9 END
   ================================================================== */


/* ==================================================================
   SJK PHOTOMATCH CANONICAL TYPOGRAPHY R10

   ONE typography system for the complete public product website.

   DISPLAY:
       Inter Tight

   READING / SUPPORTING COPY:
       Inter

   Objective:
       professional photography / enterprise SaaS balance
       consistent hierarchy
       no toy-scale typography
       no undersized supporting copy
   ================================================================== */


:root {

    /* --------------------------------------------------------------
       MASTER TYPE SCALE
       -------------------------------------------------------------- */

    --pm-type-display-xl: 68px;
    --pm-type-display-lg: 48px;
    --pm-type-display-md: 38px;

    --pm-type-title-lg: 21px;
    --pm-type-title-md: 18px;
    --pm-type-title-sm: 15px;

    --pm-type-body-lg: 17px;
    --pm-type-body: 15px;
    --pm-type-body-sm: 13px;

    --pm-type-label: 12px;
    --pm-type-meta: 11px;

    --pm-line-display: 1.04;
    --pm-line-heading: 1.18;
    --pm-line-body: 1.62;

    --pm-track-display: -.042em;
    --pm-track-heading: -.022em;
    --pm-track-label: .095em;
}


/* ==================================================================
   GLOBAL READING STANDARD
   ================================================================== */

body {
    color:#0B0F14;

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size:15px;
    font-weight:400;
    line-height:1.62;

    letter-spacing:-.004em;
}


/* ==================================================================
   MASTER DISPLAY FAMILY
   ================================================================== */

h1,
h2,
h3,
.brand-product,
.main-nav,
.nav-demo,
.nav-login,
.button,
.eyebrow,
.solution-code,
.price-name,
.step-number,
.revenue-stack article > span,
.footer-brand-lockup strong {
    font-family:
        "Inter Tight",
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


/* ==================================================================
   HEADER / NAVIGATION
   ================================================================== */

.nav-shell {
    min-height:80px;
}

.main-nav {
    gap:27px;

    font-size:14px;
    font-weight:600;

    letter-spacing:-.012em;
}

.nav-demo,
.nav-login {
    min-height:41px;

    padding:
        0
        17px;

    font-size:13.5px;
    font-weight:650;

    letter-spacing:-.012em;
}

.brand-product {
    font-size:23px;
    font-weight:650;

    letter-spacing:-.032em;
}


/* ==================================================================
   HERO
   ================================================================== */

.hero-shell {
    min-height:690px;

    padding:
        72px 0
        76px;
}

.hero .eyebrow {
    font-size:12px;
    font-weight:750;

    line-height:1;

    letter-spacing:.105em;
}

.hero h1 {
    max-width:720px;

    margin:
        18px 0
        24px;

    font-size:
        clamp(
            54px,
            4.7vw,
            68px
        );

    font-weight:700;

    line-height:1.01;

    letter-spacing:-.047em;
}

.hero h1 span {
    margin-top:3px;
}

.hero-lead {
    max-width:700px;

    font-size:17px;
    font-weight:400;

    line-height:1.68;

    letter-spacing:-.006em;
}

.hero-actions {
    margin-top:29px;
}

.hero-actions .button {
    min-height:48px;

    padding:
        0
        21px;

    font-size:13.5px;
    font-weight:650;
}

.hero-trust {
    margin-top:39px;
}

.hero-trust strong {
    font-size:13.5px;
    font-weight:650;

    line-height:1.25;
}

.hero-trust span {
    margin-top:4px;

    font-size:11.5px;
    line-height:1.55;
}


/* ==================================================================
   HERO PRODUCT WINDOW
   ================================================================== */

.window-top {
    font-size:9.5px;
    font-weight:700;

    letter-spacing:.12em;
}

.small-label {
    font-size:10px;
    font-weight:750;

    letter-spacing:.115em;
}

.match-intro strong {
    font-size:24px;
    font-weight:680;

    line-height:1.18;

    letter-spacing:-.027em;
}

.match-intro p {
    font-size:13px;
    line-height:1.58;
}

.photo-match-badge strong {
    font-size:12.5px;
    font-weight:650;
}

.photo-match-badge small {
    font-size:10.5px;
}


/* ==================================================================
   CAPTURE / MATCH / DELIVER / GROW STRIP
   ================================================================== */

.value-item strong {
    font-size:13px;
    font-weight:700;

    line-height:1.25;
}

.value-item span {
    margin-top:4px;

    font-size:11px;
    line-height:1.5;
}


/* ==================================================================
   COMMON SECTION STANDARD
   ================================================================== */

.section {
    padding:
        92px 0;
}

.section-heading {
    max-width:760px;

    margin-bottom:42px;
}

.section-heading .eyebrow,
.business-copy .eyebrow,
.privacy-layout .eyebrow {
    font-size:12px;
    font-weight:750;

    letter-spacing:.105em;
}

.section-heading h2,
.business-copy h2,
.privacy-layout h2 {
    margin:
        13px 0
        16px;

    font-size:
        clamp(
            38px,
            3.25vw,
            48px
        );

    font-weight:700;

    line-height:1.08;

    letter-spacing:-.038em;
}

.section-heading p,
.business-copy > p,
.privacy-copy > p {
    font-size:16px;

    line-height:1.66;

    letter-spacing:-.005em;
}


/* ==================================================================
   HOW IT WORKS
   ================================================================== */

#how .section-heading h2 {
    max-width:690px;
}

.steps-grid {
    gap:18px;
}

.step-card {
    min-height:245px;

    padding:
        25px
        25px
        27px;
}

.step-number {
    font-size:38px;
    font-weight:650;

    line-height:.95;

    letter-spacing:-.045em;

    font-variant-numeric:
        tabular-nums lining-nums;
}

.step-card h3 {
    margin:
        33px 0
        10px;

    font-size:18px;
    font-weight:650;

    line-height:1.25;

    letter-spacing:-.02em;
}

.step-card p {
    font-size:13.5px;
    line-height:1.62;
}


/* ==================================================================
   SOLUTIONS
   This is the core commercial section.
   Keep it premium but not oversized.
   ================================================================== */

#solutions .section-heading {
    max-width:850px;
}

#solutions .section-heading h2 {
    max-width:820px;

    font-size:
        clamp(
            40px,
            3.35vw,
            50px
        );

    line-height:1.07;
}

#solutions .section-heading p {
    max-width:820px;

    font-size:16px;
    line-height:1.66;
}

.solution-grid {
    gap:20px;
}

.solution-card {
    min-height:320px;

    padding:
        27px
        27px
        25px;

    border-radius:13px;
}

.solution-code {
    font-size:12px;
    font-weight:750;

    line-height:1;

    letter-spacing:.095em;
}

.solution-card h3 {
    margin:
        27px 0
        11px;

    font-size:19px;
    font-weight:650;

    line-height:1.22;

    letter-spacing:-.022em;
}

.solution-card p {
    max-width:36ch;

    font-size:13.5px;
    font-weight:400;

    line-height:1.64;
}

.solution-card strong {
    padding-top:24px;

    font-size:11.5px;
    font-weight:650;

    line-height:1.48;
}

.solution-card strong::before {
    margin-bottom:7px;

    font-size:9px;

    letter-spacing:.12em;
}


/* ==================================================================
   BUSINESS / REVENUE
   ================================================================== */

#business .business-copy h2 {
    max-width:520px;

    font-size:
        clamp(
            38px,
            3.15vw,
            46px
        );
}

#business .business-copy > p {
    max-width:540px;

    font-size:15.5px;
}

.text-link {
    font-size:13px;
    font-weight:700;
}

.revenue-stack article {
    grid-template-columns:
        72px
        minmax(0,1fr);

    gap:20px;

    min-height:102px;

    padding:
        24px 0;
}

.revenue-stack article > span {
    font-size:32px;
    font-weight:650;

    line-height:1;

    letter-spacing:-.045em;

    font-variant-numeric:
        tabular-nums lining-nums;
}

.revenue-stack strong {
    font-size:16px;
    font-weight:650;

    line-height:1.3;
}

.revenue-stack p {
    margin-top:5px;

    font-size:13px;
    line-height:1.58;
}


/* ==================================================================
   PLATFORM FEATURE BAND
   ================================================================== */

.feature-grid strong {
    font-size:14.5px;
    font-weight:650;

    line-height:1.28;
}

.feature-grid p {
    font-size:12.5px;
    line-height:1.58;
}


/* ==================================================================
   PRICING
   ================================================================== */

#pricing .section-heading h2 {
    max-width:720px;

    font-size:
        clamp(
            39px,
            3.2vw,
            47px
        );
}

#pricing .section-heading p {
    font-size:16px;
}

.price-name {
    font-size:10.5px;
    font-weight:750;

    letter-spacing:.10em;
}

.price span,
.price small {
    font-size:10.5px;
}

.price strong {
    font-size:36px;
    font-weight:700;

    letter-spacing:-.035em;
}

.price-card > p {
    font-size:12.5px;
    line-height:1.58;
}

.price-card li {
    font-size:11.5px;
    line-height:1.45;
}

.popular {
    font-size:8.5px;
    font-weight:800;
}

.pricing-note {
    font-size:11px;
    line-height:1.5;
}


/* ==================================================================
   PRIVACY
   ================================================================== */

#privacy .privacy-layout h2 {
    max-width:540px;

    font-size:
        clamp(
            38px,
            3.15vw,
            46px
        );
}

#privacy .privacy-copy p {
    font-size:15.5px;
    line-height:1.68;
}

.privacy-points span {
    font-size:10.5px;
    font-weight:650;
}


/* ==================================================================
   FINAL CTA
   ================================================================== */

.final-cta {
    padding:
        88px 0;
}

.final-cta .eyebrow {
    font-size:11px;
    font-weight:750;

    letter-spacing:.105em;
}

.final-cta h2 {
    max-width:790px;

    margin:
        14px auto
        17px;

    font-size:
        clamp(
            39px,
            3.35vw,
            48px
        );

    font-weight:700;

    line-height:1.08;

    letter-spacing:-.038em;
}

.final-cta p {
    max-width:660px;

    font-size:15.5px;
    line-height:1.65;
}


/* ==================================================================
   REQUEST DEMO MODAL
   ================================================================== */

.demo-modal-heading .eyebrow {
    font-size:11px;
}

.demo-modal-heading h2 {
    font-size:28px;
    font-weight:700;

    line-height:1.16;

    letter-spacing:-.028em;
}

.demo-modal-heading p {
    font-size:13px;
    line-height:1.6;
}

.demo-field > span {
    font-size:12px;
    font-weight:650;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
    font-size:13px;
}

.demo-consent {
    font-size:11.5px;
}


/* ==================================================================
   FOOTER
   ================================================================== */

.footer {
    padding:
        50px 0
        48px;
}

.footer-brand-lockup strong {
    font-size:19px;
    font-weight:650;

    letter-spacing:-.025em;
}

.footer p {
    margin-top:10px;

    font-size:12.5px;
    line-height:1.55;
}

.footer-links {
    gap:22px;

    font-size:12.5px;
    font-weight:550;
}

.footer-company {
    font-size:11.5px;
    line-height:1.45;
}


/* ==================================================================
   TABLET STANDARD
   ================================================================== */

@media (max-width:1040px) {

    .hero h1 {
        font-size:58px;
    }

    .section-heading h2,
    .business-copy h2,
    .privacy-layout h2,
    #solutions .section-heading h2,
    #pricing .section-heading h2 {
        font-size:43px;
    }

    .solution-card h3 {
        font-size:18.5px;
    }

}


/* ==================================================================
   MOBILE STANDARD
   ================================================================== */

@media (max-width:700px) {

    .main-nav {
        font-size:13px;
    }

    .hero-shell {
        padding:
            54px 0
            61px;
    }

    .hero .eyebrow {
        font-size:11px;
    }

    .hero h1 {
        font-size:43px;

        line-height:1.02;

        letter-spacing:-.04em;
    }

    .hero-lead {
        font-size:15.5px;
        line-height:1.64;
    }

    .section {
        padding:
            70px 0;
    }

    .section-heading h2,
    .business-copy h2,
    .privacy-layout h2,
    #solutions .section-heading h2,
    #pricing .section-heading h2 {
        font-size:35px;

        line-height:1.1;
    }

    .section-heading p,
    .business-copy > p,
    .privacy-copy > p {
        font-size:14.5px;
    }

    .step-number {
        font-size:34px;
    }

    .step-card h3 {
        font-size:17px;
    }

    .solution-code {
        font-size:11.5px;
    }

    .solution-card h3 {
        font-size:18px;
    }

    .solution-card p {
        font-size:13px;
    }

    .revenue-stack article {
        grid-template-columns:
            58px
            minmax(0,1fr);
    }

    .revenue-stack article > span {
        font-size:28px;
    }

    .final-cta h2 {
        font-size:36px;
    }

    .footer-brand-lockup strong {
        font-size:18px;
    }

    .footer-links {
        font-size:12px;
    }

}

/* ==================================================================
   SJK PHOTOMATCH CANONICAL TYPOGRAPHY R10 END
   ================================================================== */
