/* WYOCS homepage V2 - a genuinely new editorial composition. */
.wy2-home {
    --wy2-ink: #071829;
    --wy2-copy: #566778;
    --wy2-blue: #176da5;
    --wy2-sky: #e8f5fb;
    --wy2-mint: #e8f5ef;
    --wy2-warm: #f6f4ee;
    --wy2-line: #dce5e8;
    --wy2-radius: 28px;
    color: var(--wy2-ink);
    overflow: clip;
}

.wy2-hero {
    padding: clamp(72px, 8vw, 118px) 0 clamp(82px, 9vw, 132px);
    background:
        radial-gradient(circle at 15% 12%, rgba(232, 245, 239, .95), transparent 28%),
        radial-gradient(circle at 84% 6%, rgba(232, 245, 251, .95), transparent 30%),
        #fbfcfa;
}

.wy2-hero-copy {
    max-width: 1080px;
    margin: 0 auto clamp(52px, 6vw, 78px);
    text-align: center;
}

.wy2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid var(--wy2-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #405363;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
}
.wy2-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2d9a75;
    box-shadow: 0 0 0 5px rgba(45, 154, 117, .12);
}

.wy2-hero h1 {
    margin: 26px auto 0;
    max-width: 1120px;
    color: var(--wy2-ink);
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(3.4rem, 6.25vw, 6.25rem);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.075em;
}
.wy2-hero h1 span {
    color: var(--wy2-blue);
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.055em;
}
.wy2-hero-copy > p {
    max-width: 750px;
    margin: 28px auto 0;
    color: var(--wy2-copy);
    font-size: clamp(1.06rem, 1.5vw, 1.25rem);
    line-height: 1.72;
}
.wy2-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.wy2-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: .92rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.wy2-btn:hover { transform: translateY(-2px); }
.wy2-btn-primary { background: var(--wy2-ink); color: #fff; }
.wy2-btn-primary:hover { background: var(--wy2-blue); color: #fff; }
.wy2-btn-secondary { background: rgba(255, 255, 255, .78); border-color: var(--wy2-line); color: var(--wy2-ink); }
.wy2-btn-secondary:hover { border-color: #9fb6c1; color: var(--wy2-ink); }

.wy2-hero-stage {
    position: relative;
    width: 100%;
    min-height: clamp(480px, 58vw, 730px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 41, .09);
    border-radius: clamp(24px, 3vw, 42px);
    background: #eef6f8;
    box-shadow: 0 38px 90px rgba(22, 52, 70, .13);
}
.wy2-hero-stage picture,
.wy2-hero-stage img,
.wy2-stage-media { display: block; width: 100%; height: 100%; }
.wy2-stage-media {
    position: absolute;
    inset: 0;
    border: 0;
    object-fit: cover;
    object-position: center 53%;
    transform: translate3d(0, var(--wy2-stage-y, 0px), 0) scale(1.045);
    will-change: transform;
}
.wy2-stage-label {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: var(--wy2-ink);
    box-shadow: 0 12px 36px rgba(22, 52, 70, .1);
    font-size: .8rem;
    font-weight: 700;
}
.wy2-stage-label-top { top: 22px; left: 22px; }
.wy2-stage-label-bottom { right: 22px; bottom: 22px; }
.wy2-stage-label i { color: var(--wy2-blue); }

.wy2-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--wy2-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
}
.wy2-proof-item {
    min-height: 132px;
    padding: 25px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}
.wy2-proof-item + .wy2-proof-item { border-left: 1px solid var(--wy2-line); }
.wy2-proof-item strong {
    color: var(--wy2-ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2.1rem);
    line-height: 1;
    letter-spacing: -.045em;
}
.wy2-proof-item span {
    max-width: 31ch;
    color: var(--wy2-copy);
    font-size: .84rem;
    line-height: 1.45;
}

@media (max-width: 767.98px) {
    .wy2-hero { padding-top: 48px; }
    .wy2-hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
    .wy2-hero-copy > p { font-size: 1rem; }
    .wy2-hero-actions { flex-direction: column; }
    .wy2-btn { width: 100%; }
    .wy2-hero-stage { min-height: 460px; }
    .wy2-stage-media { object-position: 64% center; transform: scale(1.03); }
    .wy2-stage-label { font-size: .72rem; }
    .wy2-stage-label-top { top: 14px; left: 14px; }
    .wy2-stage-label-bottom { right: 14px; bottom: 14px; }
    .wy2-proof { grid-template-columns: 1fr; }
    .wy2-proof-item { min-height: 116px; }
    .wy2-proof-item + .wy2-proof-item { border-left: 0; border-top: 1px solid var(--wy2-line); }
}

@media (prefers-reduced-motion: reduce) {
    .wy2-btn { transition: none; }
    .wy2-stage-media { transform: none; will-change: auto; }
}

/* Content is visible on the first render, including without JavaScript.
   Keep optional decorative motion separate from text and the main image. */
.wy2-reveal, .wy2-reveal.is-visible { opacity: 1; transform: none; }
.wy2-bento-card,
.wy2-story,
.wy2-industry-row,
.wy2-process-steps li { backface-visibility: hidden; }
.wy2-bento-card:hover { transform: translate3d(0, -6px, 0); box-shadow: 0 26px 58px rgba(7, 24, 41, .1); }
.wy2-stage-label { animation: wy2-float 5.5s ease-in-out infinite; }
.wy2-stage-label-bottom { animation-delay: -2.75s; }
@keyframes wy2-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -6px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .wy2-motion-capable .wy2-hero-copy > *,
    .wy2-motion-capable .wy2-hero-stage,
    .wy2-motion-capable .wy2-proof,
    .wy2-reveal,
    .wy2-reveal.is-visible {
        opacity: 1;
        clip-path: none;
        transform: none;
        transition: none;
    }
    .wy2-stage-label { animation: none; }
}

/* Shared section language */
.wy2-section { padding: clamp(92px, 10vw, 150px) 0; }
.wy2-section-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--wy2-blue);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.wy2-section-index::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.wy2-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
    gap: clamp(40px, 8vw, 116px);
    align-items: end;
    margin-bottom: clamp(48px, 7vw, 82px);
}
.wy2-section-head h2,
.wy2-process-intro h2,
.wy2-story-title h2,
.wy2-faq-intro h2,
.wy2-contact-copy h2 {
    margin: 0;
    color: var(--wy2-ink);
    font-size: clamp(2.7rem, 5vw, 5.3rem);
    line-height: 1;
    letter-spacing: -.065em;
}
.wy2-section-head h2 em,
.wy2-process-intro h2 em,
.wy2-story-title h2 em,
.wy2-contact-copy h2 em {
    color: var(--wy2-blue);
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}
.wy2-section-head > p,
.wy2-process-intro > p,
.wy2-faq-intro > p,
.wy2-contact-copy > p {
    margin: 0;
    color: var(--wy2-copy);
    font-size: 1.02rem;
    line-height: 1.72;
}

/* Capabilities bento */
.wy2-capabilities { background: #fff; }
.wy2-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(260px, auto);
    gap: 16px;
}
.wy2-bento-card {
    grid-column: span 4;
    min-height: 300px;
    padding: clamp(25px, 3vw, 36px);
    border: 1px solid var(--wy2-line);
    border-radius: var(--wy2-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #f8faf9;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.wy2-bento-card:hover { transform: translateY(-3px); border-color: #bad0d9; box-shadow: 0 24px 54px rgba(22, 52, 70, .08); }
.wy2-bento-card-1 { grid-column: span 8; min-height: 420px; color: #fff; background: var(--wy2-ink); border-color: var(--wy2-ink); }
.wy2-bento-card-2 { grid-column: span 4; min-height: 420px; background: var(--wy2-sky); }
.wy2-bento-card-3 { background: var(--wy2-mint); }
.wy2-bento-card-4 { background: var(--wy2-warm); }
.wy2-bento-card-5 { background: #edf3fb; }
.wy2-bento-card-6 { grid-column: span 12; min-height: 260px; background: #eaf6f3; }
.wy2-bento-top { display: flex; justify-content: space-between; align-items: flex-start; }
.wy2-bento-top > span { color: #788995; font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.wy2-bento-top i { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: var(--wy2-blue); background: rgba(255, 255, 255, .72); font-size: 1.3rem; }
.wy2-bento-card-1 .wy2-bento-top > span { color: rgba(255, 255, 255, .5); }
.wy2-bento-card-1 .wy2-bento-top i { color: #9bd9f2; background: rgba(255, 255, 255, .08); }
.wy2-bento-copy { max-width: 650px; }
.wy2-bento-copy h3 { margin: 0 0 12px; color: var(--wy2-ink); font-size: clamp(1.35rem, 2.1vw, 2rem); letter-spacing: -.045em; }
.wy2-bento-card-1 .wy2-bento-copy h3 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 4.5rem); line-height: 1; }
.wy2-bento-copy p { margin: 0; max-width: 52ch; color: var(--wy2-copy); line-height: 1.65; }
.wy2-bento-card-1 .wy2-bento-copy p { color: rgba(255, 255, 255, .67); font-size: 1.02rem; }
.wy2-bento-copy a { display: inline-flex; gap: 8px; align-items: center; margin-top: 22px; color: var(--wy2-blue); font-size: .84rem; font-weight: 800; }
.wy2-bento-card-1 .wy2-bento-copy a { color: #a9def3; }
.wy2-bento-copy a i { transition: transform .2s ease; }
.wy2-bento-copy a:hover i { transform: translateX(4px); }
.wy2-stack { margin-top: 16px; padding: 24px 26px; border: 1px solid var(--wy2-line); border-radius: 22px; display: grid; grid-template-columns: minmax(220px, .8fr) 2fr; gap: 24px; align-items: center; }
.wy2-stack-label { color: var(--wy2-ink); font-size: .8rem; font-weight: 800; }
.wy2-stack-list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.wy2-stack-list span { padding: 7px 11px; border-radius: 999px; color: #536673; background: #f3f6f6; font-size: .72rem; font-weight: 700; }

/* WYOCS product ecosystems */
.wy2-ecosystems {
    background:
        radial-gradient(circle at 90% 8%, rgba(232, 245, 251, .9), transparent 28%),
        var(--wy2-warm);
}
.wy2-product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(310px, .7fr);
    gap: 16px;
    align-items: stretch;
}
.wy2-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--wy2-line);
    border-radius: clamp(24px, 3vw, 34px);
    background: #fff;
    box-shadow: 0 28px 66px rgba(22, 52, 70, .09);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}
.wy2-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 36px 78px rgba(22, 52, 70, .13);
}
.wy2-product-card figure {
    position: relative;
    height: clamp(390px, 42vw, 550px);
    margin: 0;
    overflow: hidden;
    background: #dce8ec;
}
.wy2-product-courier figure { height: clamp(330px, 31vw, 430px); }
.wy2-product-card figure picture,
.wy2-product-card figure picture img { display: block; width: 100%; height: 100%; }
.wy2-product-card figure picture img {
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}
.wy2-product-pay figure picture img { object-position: 59% center; }
.wy2-product-courier figure picture img { object-position: 36% center; }
.wy2-product-card:hover figure picture img { transform: scale(1.025); }
.wy2-product-card figure::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(7, 24, 41, .78));
    pointer-events: none;
}
.wy2-product-card figcaption {
    position: absolute;
    z-index: 2;
    right: clamp(20px, 3vw, 32px);
    bottom: clamp(20px, 3vw, 30px);
    left: clamp(20px, 3vw, 32px);
    color: #fff;
}
.wy2-product-card figcaption span {
    display: block;
    margin-bottom: 6px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    opacity: .76;
}
.wy2-product-card figcaption strong {
    max-width: 28ch;
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.12rem, 2vw, 1.55rem);
    line-height: 1.18;
    letter-spacing: -.035em;
}
.wy2-product-logo {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    width: min(230px, 36%) !important;
    height: auto !important;
    filter: drop-shadow(0 3px 9px rgba(0, 0, 0, .24));
    pointer-events: none;
}
.wy2-product-copy { padding: clamp(26px, 4vw, 44px); }
.wy2-product-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.wy2-product-title span {
    color: var(--wy2-blue);
    font-size: .73rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.wy2-product-title small {
    color: #85949e;
    font-size: .68rem;
    font-weight: 750;
}
.wy2-product-copy h3 {
    max-width: 20ch;
    margin: 0;
    color: var(--wy2-ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    line-height: 1.03;
    letter-spacing: -.06em;
}
.wy2-product-courier .wy2-product-copy h3 { font-size: clamp(1.7rem, 2.5vw, 2.35rem); }
.wy2-product-copy > p {
    max-width: 66ch;
    margin: 20px 0 0;
    color: var(--wy2-copy);
    line-height: 1.7;
}
.wy2-product-copy ul {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}
.wy2-product-copy li {
    padding: 14px;
    border: 1px solid var(--wy2-line);
    border-radius: 14px;
    color: #4f626f;
    background: #f9fbfa;
    font-size: .76rem;
    line-height: 1.5;
}
.wy2-product-copy li i { margin-right: 6px; color: #2d9a75; }
.wy2-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
}
.wy2-product-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--wy2-blue);
    font-size: .82rem;
    font-weight: 850;
}
.wy2-product-actions a i { transition: transform .2s ease; }
.wy2-product-actions a:hover i { transform: translateX(3px); }
.wy2-product-actions a:last-child:hover i { transform: translate(2px, -2px); }
.wy2-product-courier {
    color: #fff;
    border-color: rgba(7, 24, 41, .1);
    background: var(--wy2-ink);
}
.wy2-product-courier .wy2-product-title span,
.wy2-product-courier .wy2-product-actions a { color: #9bd9f2; }
.wy2-product-courier .wy2-product-title small { color: rgba(255, 255, 255, .42); }
.wy2-product-courier .wy2-product-copy h3 { color: #fff; }
.wy2-product-courier .wy2-product-copy > p { color: rgba(255, 255, 255, .65); }
.wy2-product-courier .wy2-product-logo {
    right: 18px;
    left: auto;
    width: min(230px, 68%) !important;
}
.wy2-product-chat {
    grid-column: 1 / -1;
    padding: clamp(22px, 3.5vw, 42px);
    display: grid;
    grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr) minmax(190px, .52fr);
    align-items: center;
    gap: clamp(24px, 4vw, 58px);
    border-color: rgba(91, 207, 220, .18);
    color: #fff;
    background:
        radial-gradient(circle at 8% 15%, rgba(57, 220, 196, .15), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(43, 127, 236, .18), transparent 30%),
        var(--wy2-ink);
}
.wy2-chat-brand {
    position: relative;
    min-height: 200px;
    padding: 58px 24px 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .045);
}
.wy2-chat-brand img {
    width: 100%;
    max-width: 340px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .2));
}
.wy2-chat-status {
    position: absolute;
    top: 18px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9bd9f2;
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.wy2-chat-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #65d5e6;
    box-shadow: 0 0 0 4px rgba(101, 213, 230, .1);
}
.wy2-product-chat .wy2-product-copy {
    padding: 0;
}
.wy2-product-chat .wy2-product-title span,
.wy2-product-chat .wy2-product-actions a {
    color: #9bd9f2;
}
.wy2-product-chat .wy2-product-title small {
    color: rgba(255, 255, 255, .44);
}
.wy2-product-chat .wy2-product-copy h3 {
    max-width: 18ch;
    color: #fff;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}
.wy2-product-chat .wy2-product-copy > p {
    color: rgba(255, 255, 255, .65);
}
.wy2-chat-signals {
    display: grid;
    gap: 9px;
}
.wy2-chat-signals span {
    min-height: 48px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    color: rgba(255, 255, 255, .68);
    background: rgba(255, 255, 255, .04);
    font-size: .72rem;
    font-weight: 700;
}
.wy2-chat-signals i {
    color: #9bd9f2;
}

.wy2-product-verify {
    grid-column: 1 / -1;
    padding: clamp(22px, 3.5vw, 42px);
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.35fr) minmax(180px, .48fr);
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    background: linear-gradient(135deg, #ffffff 0%, #eef7fb 100%);
}
.wy2-verify-brand {
    position: relative;
    min-height: 200px;
    padding: 58px 24px 24px;
    display: grid;
    place-items: center;
    border: 1px solid #cfe3ec;
    border-radius: 22px;
    background: #fff;
}
.wy2-verify-brand img { width: 100%; max-width: 320px; height: auto; }
.wy2-verify-status {
    position: absolute;
    top: 18px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wy2-blue);
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.wy2-verify-status i { width: 7px; height: 7px; border-radius: 50%; background: #2d9a75; box-shadow: 0 0 0 4px rgba(45, 154, 117, .1); }
.wy2-product-verify .wy2-product-copy { padding: 0; }
.wy2-product-verify .wy2-product-copy h3 { max-width: 22ch; font-size: clamp(1.8rem, 2.8vw, 2.8rem); }
.wy2-verify-signals { display: grid; gap: 9px; }
.wy2-verify-signals span {
    min-height: 48px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #d6e5eb;
    border-radius: 12px;
    color: #4f626f;
    background: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 700;
}
.wy2-verify-signals i { color: var(--wy2-blue); }

/* Editorial people and practice gallery */
.wy2-people { background: #fff; }
.wy2-people-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 270px;
    gap: 16px;
}
.wy2-photo-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--wy2-line);
    border-radius: var(--wy2-radius);
    background: #dce8ec;
    isolation: isolate;
}
.wy2-photo-team { grid-column: span 8; grid-row: span 2; }
.wy2-photo-engineer { grid-column: span 4; grid-row: span 2; }
.wy2-photo-workshop { grid-column: span 5; }
.wy2-photo-operations { grid-column: span 7; }
.wy2-photo-card picture,
.wy2-photo-card picture img { display: block; width: 100%; height: 100%; }
.wy2-photo-card picture img {
    object-fit: cover;
    transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}
.wy2-photo-team picture img { object-position: center; }
.wy2-photo-engineer picture img { object-position: center 42%; }
.wy2-photo-workshop picture img { object-position: center 42%; }
.wy2-photo-operations picture img { object-position: center 38%; }
.wy2-photo-card::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 42% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(4, 17, 29, .76));
    pointer-events: none;
}
.wy2-photo-card:hover picture img { transform: scale(1.035); filter: saturate(1.04); }
.wy2-photo-card figcaption {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}
.wy2-photo-card figcaption span {
    color: rgba(255, 255, 255, .7);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.wy2-photo-card figcaption strong {
    max-width: 250px;
    color: #fff;
    font-size: 1rem;
    text-align: right;
    letter-spacing: -.025em;
}
.wy2-photo-brand {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    width: clamp(140px, 16vw, 204px);
    height: auto;
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .3));
}
.wy2-photo-brand-right { right: 20px; left: auto; }
.wy2-editorial-note {
    margin: 18px 4px 0;
    color: #7b8992;
    font-size: .7rem;
    line-height: 1.5;
}

/* Industries as editorial rows */
.wy2-industries { background: var(--wy2-warm); }
.wy2-section-head-wide { grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); }
.wy2-industry-list { border-top: 1px solid rgba(7, 24, 41, .14); }
.wy2-industry-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(220px, .8fr) minmax(300px, 1.25fr);
    gap: 24px;
    align-items: center;
    min-height: 126px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(7, 24, 41, .14);
}
.wy2-industry-num { color: #87949d; font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.wy2-industry-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--wy2-blue); background: #fff; font-size: 1.2rem; }
.wy2-industry-row h3 { margin: 0; color: var(--wy2-ink); font-size: 1.2rem; letter-spacing: -.035em; }
.wy2-industry-row p { margin: 0; color: var(--wy2-copy); font-size: .9rem; line-height: 1.6; }

/* Process */
.wy2-process { color: #fff; background: var(--wy2-ink); }
.wy2-process-layout { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(480px, 1.1fr); gap: clamp(52px, 9vw, 128px); }
.wy2-process-intro { position: sticky; top: 130px; align-self: start; }
.wy2-process .wy2-section-index { color: #8dd4ef; }
.wy2-process-intro h2 { color: #fff; }
.wy2-process-intro h2 em { color: #8dd4ef; }
.wy2-process-intro > p { margin-top: 24px; color: rgba(255, 255, 255, .65); }
.wy2-btn-light { margin-top: 28px; color: var(--wy2-ink); background: #fff; }
.wy2-btn-light:hover { color: var(--wy2-ink); background: #dff2f9; }
.wy2-process-steps { list-style: none; padding: 0; margin: 0; }
.wy2-process-steps li { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 10px 0 42px; border-top: 1px solid rgba(255, 255, 255, .14); }
.wy2-process-steps li + li { padding-top: 42px; }
.wy2-process-steps li > span { color: #8dd4ef; font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
.wy2-process-steps h3 { margin: -5px 0 12px; color: #fff; font-size: 1.55rem; letter-spacing: -.04em; }
.wy2-process-steps p { margin: 0; color: rgba(255, 255, 255, .64); line-height: 1.7; }

/* Partner stories */
.wy2-proof-stories { background: #fff; }
.wy2-story-title { max-width: 820px; margin-bottom: 58px; }
.wy2-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.wy2-story { margin: 0; min-height: 310px; padding: 34px; border: 1px solid var(--wy2-line); border-radius: var(--wy2-radius); display: flex; flex-direction: column; justify-content: space-between; background: #f8faf9; }
.wy2-story-featured { grid-column: span 2; min-height: 380px; padding: clamp(38px, 5vw, 64px); color: #fff; background: var(--wy2-blue); border-color: var(--wy2-blue); }
.wy2-quote-mark { font-family: 'Fraunces', Georgia, serif; font-size: 4.5rem; line-height: .7; color: var(--wy2-blue); }
.wy2-story-featured .wy2-quote-mark { color: rgba(255, 255, 255, .42); }
.wy2-story > p { margin: 28px 0; color: var(--wy2-ink); font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.8rem); font-style: italic; line-height: 1.45; }
.wy2-story-featured > p { max-width: 970px; color: #fff; font-size: clamp(1.8rem, 3.2vw, 3.25rem); line-height: 1.25; }
.wy2-story footer { display: flex; flex-direction: column; gap: 3px; }
.wy2-story footer strong { color: var(--wy2-ink); font-size: .86rem; }
.wy2-story footer span { color: var(--wy2-copy); font-size: .76rem; }
.wy2-story-featured footer strong { color: #fff; }
.wy2-story-featured footer span { color: rgba(255, 255, 255, .68); }

/* FAQ */
.wy2-faq { background: var(--wy2-sky); }
.wy2-faq-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.2fr); gap: clamp(50px, 9vw, 130px); }
.wy2-faq-intro > p { margin-top: 20px; }
.wy2-faq-list { border-top: 1px solid rgba(7, 24, 41, .14); }
.wy2-faq-list details { border-bottom: 1px solid rgba(7, 24, 41, .14); }
.wy2-faq-list summary { min-height: 78px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; color: var(--wy2-ink); cursor: pointer; font-weight: 750; }
.wy2-faq-list summary::-webkit-details-marker { display: none; }
.wy2-faq-list summary i { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; display: grid; place-items: center; color: var(--wy2-blue); background: #fff; transition: transform .2s ease, background .2s ease, color .2s ease; }
.wy2-faq-list details[open] summary i { transform: rotate(45deg); color: #fff; background: var(--wy2-blue); }
.wy2-faq-list details > p { margin: 0; padding: 0 48px 24px 0; color: var(--wy2-copy); line-height: 1.7; }

/* Contact */
.wy2-contact { color: #fff; background: #0c2134; }
.wy2-contact-shell { display: grid; grid-template-columns: minmax(300px, .76fr) minmax(540px, 1.12fr); gap: clamp(48px, 8vw, 104px); align-items: start; }
.wy2-contact .wy2-section-index { color: #8dd4ef; }
.wy2-contact-copy h2 { color: #fff; }
.wy2-contact-copy h2 em { color: #8dd4ef; }
.wy2-contact-copy > p { margin-top: 24px; color: rgba(255, 255, 255, .66); }
.wy2-contact-points { display: grid; gap: 12px; margin-top: 36px; }
.wy2-contact-points a { min-height: 62px; padding: 12px 16px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 15px; display: flex; gap: 13px; align-items: center; color: #fff; }
.wy2-contact-points a:hover { border-color: rgba(141, 212, 239, .45); color: #fff; }
.wy2-contact-points i { color: #8dd4ef; }
.wy2-contact-points span { display: flex; flex-direction: column; font-size: .86rem; font-weight: 700; }
.wy2-contact-points small { color: rgba(255, 255, 255, .48); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wy2-form-card { padding: clamp(28px, 4vw, 44px); border-radius: 30px; color: var(--wy2-ink); background: #fff; box-shadow: 0 34px 80px rgba(0, 0, 0, .2); }
.wy2-form-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.wy2-form-head span { display: block; font-size: 1.2rem; font-weight: 800; letter-spacing: -.035em; }
.wy2-form-head p { margin: 3px 0 0; color: var(--wy2-copy); font-size: .76rem; }
.wy2-form-head > i { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--wy2-blue); background: var(--wy2-sky); }
.wy2-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; }
.wy2-field { display: flex; flex-direction: column; gap: 7px; }
.wy2-field-full { grid-column: 1 / -1; }
.wy2-field label { color: #415361; font-size: .74rem; font-weight: 800; }
.wy2-field input, .wy2-field select, .wy2-field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid var(--wy2-line); border-radius: 12px; outline: none; color: var(--wy2-ink); background: #fafcfc; font: inherit; font-size: .94rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.wy2-field textarea { min-height: 112px; resize: vertical; }
.wy2-field input:focus, .wy2-field select:focus, .wy2-field textarea:focus { border-color: var(--wy2-blue); box-shadow: 0 0 0 4px rgba(23, 109, 165, .1); background: #fff; }
.wy2-form-submit { width: 100%; min-height: 52px; border: 0; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: var(--wy2-blue); font-weight: 800; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.wy2-form-submit:hover { background: #0f567f; transform: translateY(-1px); }
.wy2-form-privacy { margin: 16px 0 0; color: #667783; font-size: .75rem; line-height: 1.55; }
.wy2-form-privacy a { font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 991.98px) {
    .wy2-section-head, .wy2-process-layout, .wy2-faq-layout, .wy2-contact-shell { grid-template-columns: 1fr; }
    .wy2-product-showcase { grid-template-columns: 1fr; }
    .wy2-product-courier figure { height: 430px; }
    .wy2-product-chat { grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr); }
    .wy2-chat-signals { grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .wy2-product-verify { grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr); }
    .wy2-verify-signals { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .wy2-bento-card, .wy2-bento-card-1, .wy2-bento-card-2 { grid-column: span 6; }
    .wy2-bento-card-6 { grid-column: span 12; }
    .wy2-industry-row { grid-template-columns: 36px 48px 1fr; }
    .wy2-industry-row p { grid-column: 3; }
    .wy2-process-intro { position: static; }
    .wy2-faq-intro { max-width: 600px; }
    .wy2-people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 320px; }
    .wy2-photo-team { grid-column: span 2; grid-row: span 1; }
    .wy2-photo-engineer, .wy2-photo-workshop { grid-column: span 1; grid-row: span 1; }
    .wy2-photo-operations { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 767.98px) {
    .wy2-section { padding: 78px 0; }
    .wy2-section-head h2, .wy2-process-intro h2, .wy2-story-title h2, .wy2-faq-intro h2, .wy2-contact-copy h2 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
    .wy2-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .wy2-bento-card, .wy2-bento-card-1, .wy2-bento-card-2, .wy2-bento-card-6 { grid-column: 1; min-height: 290px; }
    .wy2-bento-card-1 { min-height: 370px; }
    .wy2-bento-card-1 .wy2-bento-copy h3 { font-size: 2.6rem; }
    .wy2-stack { grid-template-columns: 1fr; }
    .wy2-stack-list { justify-content: flex-start; }
    .wy2-product-card figure, .wy2-product-courier figure { height: 410px; }
    .wy2-product-pay figure picture img { object-position: 68% center; }
    .wy2-product-courier figure picture img { object-position: 38% center; }
    .wy2-product-copy { padding: 25px 20px 28px; }
    .wy2-product-copy h3, .wy2-product-courier .wy2-product-copy h3 { font-size: 2rem; }
    .wy2-product-copy ul { grid-template-columns: 1fr; }
    .wy2-product-title { align-items: flex-start; flex-direction: column; gap: 5px; }
    .wy2-product-chat { padding: 16px; grid-template-columns: 1fr; gap: 24px; }
    .wy2-product-chat .wy2-product-copy { padding: 4px 5px 0; }
    .wy2-chat-brand { min-height: 170px; }
    .wy2-chat-signals { grid-column: auto; grid-template-columns: 1fr 1fr; }
    .wy2-product-verify { padding: 16px; grid-template-columns: 1fr; gap: 24px; }
    .wy2-product-verify .wy2-product-copy { padding: 4px 5px 0; }
    .wy2-verify-brand { min-height: 170px; }
    .wy2-verify-signals { grid-column: auto; grid-template-columns: 1fr; }
    .wy2-industry-row { grid-template-columns: 34px 44px 1fr; gap: 14px; }
    .wy2-industry-row p { grid-column: 1 / -1; padding-left: 92px; }
    .wy2-process-steps li { grid-template-columns: 42px 1fr; gap: 12px; }
    .wy2-story-grid { grid-template-columns: 1fr; }
    .wy2-story, .wy2-story-featured { grid-column: 1; min-height: 310px; }
    .wy2-story-featured > p { font-size: 1.85rem; }
    .wy2-form-grid { grid-template-columns: 1fr; }
    .wy2-field-full { grid-column: 1; }
    .wy2-form-card { padding: 24px 18px; border-radius: 22px; }
    .wy2-people-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; }
    .wy2-photo-team, .wy2-photo-engineer, .wy2-photo-workshop, .wy2-photo-operations { grid-column: 1; grid-row: span 1; }
    .wy2-photo-engineer { min-height: 470px; }
    .wy2-photo-card figcaption { right: 18px; bottom: 17px; left: 18px; display: block; }
    .wy2-photo-card figcaption strong { display: block; margin-top: 4px; text-align: left; }
    .wy2-photo-brand { top: 15px; left: 15px; width: 148px; }
    .wy2-photo-brand-right { right: 15px; left: auto; }
}

@media (prefers-reduced-motion: reduce) {
    .wy2-photo-card picture img { transition: none; }
    .wy2-photo-card:hover picture img { transform: none; }
}

/* Small labels remain readable on the light and dark product cards. */
.wy2-bento-top > span, .wy2-product-title small, .wy2-editorial-note, .wy2-industry-num { color: #526774; }
.wy2-product-courier .wy2-product-title small { color: #bdcbd6; }
.wy2-story-featured footer span { color: #fff; }
