:root {
    --blue: #0b5ed7;
    --bright: #2ea3ff;
    --deep: #0a2e6e;
    --charcoal: #0b1118;
    --dark: #111827;
    --muted: #64748b;
    --light: #f5f7fa;
    --border: #e5e7eb;
    --shadow: 0 24px 80px rgba(15, 23, 42, .14);
    --soft: 0 12px 36px rgba(15, 23, 42, .08);
    --radius: 24px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6
}

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

img {
    max-width: 100%;
    display: block
}

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

.site-shell {
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(46, 163, 255, .13), transparent 34rem), linear-gradient(180deg, #fff 0, #f8fafc 58%, #fff)
}

.announcement {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .72);
    font-size: 13px
}

.announcement .container {
    min-height: 38px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center
}

.announcement strong {
    color: #fff
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(229, 231, 235, .85)
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
}

.brand-mark:before,
.brand-mark:after {
    content: "";
    position: absolute;
    top: 3px;
    border-radius: 4px;
    transform: skewX(-27deg);
    box-shadow: 0 10px 24px rgba(11, 94, 215, .16);
}

.brand-mark:before {
    left: 6px;
    width: 16px;
    height: 38px;
    background: linear-gradient(180deg, #0a2e6e 0%, #0b5ed7 100%);
}

.brand-mark:after {
    left: 22px;
    width: 16px;
    height: 42px;
    background: linear-gradient(180deg, #2ea3ff 0%, #0b5ed7 100%);
}

.brand-text {
    display: flex;
    align-items: center;
    line-height: 1;
    min-width: 0;
    white-space: nowrap;
}

.brand-text strong {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .02em;
}

.brand-text span {
    font-size: 18px;
    font-weight: 400;
    margin-left: 6px;
    color: #6b7280;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(148, 163, 184, .36);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #0f172a;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.mobile-nav-toggle__icon,
.mobile-nav-toggle__icon:before,
.mobile-nav-toggle__icon:after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-nav-toggle__icon {
    position: relative;
}

.mobile-nav-toggle__icon:before,
.mobile-nav-toggle__icon:after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-nav-toggle__icon:before {
    top: -6px;
}

.mobile-nav-toggle__icon:after {
    top: 6px;
}

body.mobile-nav-open {
    overflow: hidden;
}

.mobile-nav-open .mobile-nav-toggle__icon {
    background: transparent;
}

.mobile-nav-open .mobile-nav-toggle__icon:before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-nav-open .mobile-nav-toggle__icon:after {
    top: 0;
    transform: rotate(-45deg);
}

.brand-logo {
    width: 196px;
    height: auto
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 800;
    color: #334155
}

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

.header-actions, .hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: .2s;
    white-space: nowrap
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--deep));
    box-shadow: 0 16px 36px rgba(11, 94, 215, .26)
}

.btn-secondary {
    background: rgba(255, 255, 255, .85);
    border-color: rgba(148, 163, 184, .36);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05)
}

.hero {
    padding: 96px 0 82px
}

.hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.02fr) minmax(360px, .98fr);
    align-items: center;
    gap: 58px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(11, 94, 215, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: var(--deep);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04)
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--bright);
    box-shadow: 0 0 0 5px rgba(46, 163, 255, .16)
}

h1, h2, h3 {
    font-family: Outfit, Inter, sans-serif;
    line-height: 1.02;
    margin: 0;
    color: #0f172a;
    letter-spacing: -.045em
}

h1 {
    margin-top: 24px;
    font-size: clamp(48px, 7vw, 84px)
}

h2 {
    font-size: clamp(36px, 4.5vw, 58px)
}

h3 {
    font-size: 24px;
    letter-spacing: -.02em
}

.hero-copy {
    margin: 24px 0 0;
    max-width: 660px;
    color: #475569;
    font-size: clamp(18px, 2vw, 21px)
}

.hero-actions {
    margin-top: 34px
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px
}

.trust-row span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: #475569;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .04)
}

.hero-visual img {
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.section {
    padding: 90px 0
}

.section-header {
    max-width: 760px;
    margin-bottom: 42px
}

.section-kicker {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.section-header p, .dark-section p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    max-width: 700px
}

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

.service-card, .case-card, .process-grid article {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft);
    transition: .22s;
    overflow: hidden
}

.service-card:hover, .case-card:hover, .process-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(11, 94, 215, .22)
}

.service-card {
    padding: 28px;
    min-height: 240px
}

.service-card p, .case-card p, .process-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(11, 94, 215, .12), rgba(46, 163, 255, .18));
    color: var(--blue);
    font-weight: 900
}

.dark-section {
    background: radial-gradient(circle at top right, rgba(46, 163, 255, .2), transparent 34rem), linear-gradient(145deg, #0b1118, #111827);
    color: #fff
}

.dark-section h2, .dark-section h3 {
    color: #fff
}

.dark-section p {
    color: rgba(255, 255, 255, .66)
}

.beacon-grid {
    display: grid;
    grid-template-columns:minmax(0, .92fr) minmax(380px, 1.08fr);
    gap: 60px;
    align-items: center
}

.feature-list {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px
}

.feature-list span {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
    font-size: 14px
}

.beacon-image {
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32)
}

.case-card > div {
    padding: 24px
}

.tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 94, 215, .09);
    color: var(--deep);
    font-size: 12px;
    font-weight: 900
}

.process-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 18px
}

.process-grid article {
    padding: 26px;
    background: #fff
}

.process-grid span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #eff6ff;
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 22px
}

.featured-work {
    background: #fff;
}

.project-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.project-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.project-row.reverse .project-image {
    order: 2;
}

.project-row.reverse .project-content {
    order: 1;
}

.project-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.project-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11,94,215,.08);
    color: #0b5ed7;
    font-size: 13px;
    font-weight: 700;
}

.project-content h3 {
    margin-bottom: 18px;
    font-size: 42px;
}

.project-content p {
    color: #64748b;
    font-size: 18px;
    margin-bottom: 24px;
}

.project-results {
    padding-left: 20px;
}

.project-results li {
    margin-bottom: 12px;
    color: #334155;
    font-weight: 500;
}

@media (max-width: 991px) {

    .project-row,
    .project-row.reverse {
        grid-template-columns: 1fr;
    }

    .project-row.reverse .project-image,
    .project-row.reverse .project-content {
        order: initial;
    }

    .project-content h3 {
        font-size: 32px;
    }
}

.cta-section {
    padding: 92px 0
}

.cta-box {
    padding: 60px;
    border-radius: 34px;
    background: radial-gradient(circle at top right, rgba(46, 163, 255, .24), transparent 26rem), linear-gradient(135deg, #0b1118, #111827);
    color: #fff;
    box-shadow: var(--shadow)
}

.cta-box h2 {
    color: #fff;
    max-width: 760px
}

.cta-box p {
    margin: 18px 0 0;
    max-width: 650px;
    color: rgba(255, 255, 255, .66);
    font-size: 18px
}

.site-footer {
    padding: 54px 0;
    background: #fff;
    border-top: 1px solid var(--border)
}

.footer-grid {
    display: grid;
    grid-template-columns:1.4fr .8fr .8fr .8fr;
    gap: 36px
}

.footer-logo {
    width: 190px
}

.footer-grid p, .footer-grid a, .footer-grid span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650
}

.footer-grid a, .footer-grid span {
    display: block;
    margin: 9px 0
}

.footer-grid h4 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900
}

@media (max-width: 1020px) {
    .header-inner {
        position: relative;
        gap: 14px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        z-index: 1000;
        top: calc(100% + 1px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(226, 232, 240, .95);
        border-radius: 20px;
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
    }

    .mobile-nav-open .main-nav,
    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        background: #eff6ff;
        color: var(--blue);
    }

    .hero-grid, .beacon-grid {
        grid-template-columns:1fr
    }

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

    .process-grid, .footer-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

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

    .announcement .container {
        min-height: 34px;
        flex-direction: column;
        gap: 0;
        padding: 7px 0;
        line-height: 1.35
    }

    .header-inner {
        min-height: 70px
    }

    .brand-logo {
        width: 168px
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand-mark:before {
        left: 5px;
        width: 13px;
        height: 32px;
    }

    .brand-mark:after {
        left: 18px;
        width: 13px;
        height: 35px;
    }

    .brand-text {
        display: grid;
        gap: 2px;
    }

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

    .brand-text span {
        margin-left: 0;
        font-size: 12px;
        letter-spacing: .12em;
    }

    .mobile-nav-toggle__text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .mobile-nav-toggle {
        width: 44px;
        padding: 0;
        justify-content: center;
    }

    .main-nav {
        left: 14px;
        right: 14px;
    }

    .header-actions .btn-secondary {
        display: none
    }

    .hero {
        padding: 58px 0 62px
    }

    .hero-actions .btn {
        width: 100%
    }

    .services-grid, .case-grid, .process-grid, .feature-list, .footer-grid {
        grid-template-columns:1fr
    }

    .section {
        padding: 66px 0
    }

    .cta-box {
        padding: 34px
    }
}

/* Compact homepage portfolio preview */
.featured-work--compact {
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.section-header--split {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;
    text-align: left;
}

.section-header--split .section-lede {
    max-width: 720px;
    margin-inline: 0;
}

.section-header-actions {
    flex: 0 0 auto;
    margin-bottom: 8px;
}

.home-work-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr) minmax(0, .85fr);
    gap: 22px;
    align-items: stretch;
}

.home-work-card {
    overflow: hidden;
    border: 1px solid rgba(210, 225, 245, .95);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 35, 70, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-work-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 99, 206, .28);
    box-shadow: 0 24px 58px rgba(15, 35, 70, .11);
}

.home-work-card--featured {
    grid-row: span 2;
}

.home-work-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    background: #eef5ff;
    overflow: hidden;
}

.home-work-card--featured .home-work-card__image {
    aspect-ratio: 16 / 11;
}

.home-work-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform .24s ease;
}

.home-work-card:hover .home-work-card__image img {
    transform: scale(1.035);
}

.home-work-card__body {
    padding: 24px;
}

.home-work-card--featured .home-work-card__body {
    padding: 30px;
}

.home-work-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    letter-spacing: -.03em;
}

.home-work-card p {
    margin: 0 0 18px;
    color: #64748b;
    line-height: 1.6;
}

.home-work-metric {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 10px 13px;
    border-radius: 14px;
    background: #eff6ff;
    color: #0b5ed7;
    font-size: .9rem;
    font-weight: 850;
}

.text-link {
    color: #0b5ed7;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .home-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-work-card--featured {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    .section-header--split {
        display: block;
        text-align: center;
    }

    .section-header--split .section-lede {
        margin-inline: auto;
    }

    .section-header-actions {
        margin-top: 22px;
    }

    .home-work-grid,
    .home-work-card--featured {
        display: grid;
        grid-template-columns: 1fr;
        grid-column: auto;
    }
}


/* Beacon CMS section - text + feature cards only */
.beacon-cms-section {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(circle at top right, rgba(46, 163, 255, .22), transparent 34rem),
            radial-gradient(circle at bottom left, rgba(11, 94, 215, .16), transparent 30rem),
            linear-gradient(145deg, #0b1118, #111827);
}

.beacon-cms-intro {
    max-width: 920px;
    margin: 0 auto 46px;
    text-align: center;
}

.beacon-cms-intro .section-kicker {
    color: #2ea3ff;
}

.beacon-cms-intro h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    max-width: 920px;
    margin: 0 auto;
}

.beacon-cms-intro p {
    max-width: 820px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.7;
}

.beacon-cms-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.beacon-cms-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 150px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .04),
            0 18px 48px rgba(0, 0, 0, .12);
}

.beacon-cms-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2ea3ff, #0b5ed7);
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(11, 94, 215, .28);
}

.beacon-cms-card h3 {
    color: #fff;
    font-size: 22px;
    letter-spacing: -.025em;
    margin: 0;
}

.beacon-cms-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
    line-height: 1.55;
}

/* Remove legacy Beacon image/card spacing if old classes still exist */
.beacon-dashboard-showcase,
.beacon-image {
    display: none;
}

@media (max-width: 1020px) {
    .beacon-cms-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .beacon-cms-intro {
        text-align: left;
        margin-bottom: 32px;
    }

    .beacon-cms-feature-grid {
        grid-template-columns: 1fr;
    }

    .beacon-cms-card {
        grid-template-columns: 46px 1fr;
        padding: 20px;
        min-height: auto;
    }

    .beacon-cms-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 20px;
    }
}

/* Portfolio overview - 2x2 text cards, no screenshots */
.vws-portfolio-section {
    background:
            radial-gradient(circle at top right, rgba(11, 94, 215, .08), transparent 30rem),
            linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vws-portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.vws-portfolio-header > div {
    max-width: 760px;
}

.vws-portfolio-header h2 {
    max-width: 720px;
}

.vws-portfolio-header p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
}

.vws-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 22px;
}

.vws-platform-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--border);
    box-shadow: var(--soft);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.vws-platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 94, 215, .22);
    box-shadow: var(--shadow);
}

.vws-platform-tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(11, 94, 215, .09);
    color: var(--deep);
    font-size: 12px;
    font-weight: 900;
}

.vws-platform-card h3 {
    margin: 0;
    font-size: clamp(28px, 2.4vw, 38px);
    letter-spacing: -.04em;
}

.vws-platform-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.vws-platform-card ul {
    margin: 22px 0 0;
    padding-left: 18px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

.vws-platform-card li {
    margin-bottom: 8px;
}

.vws-platform-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 28px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.vws-platform-link:hover {
    color: var(--deep);
}

@media (max-width: 900px) {
    .vws-portfolio-header {
        display: block;
    }

    .vws-portfolio-header .btn {
        margin-top: 22px;
    }

    .vws-platform-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .vws-platform-card {
        min-height: auto;
    }
}
.vws-platform-card h3 {
    margin: 0;
    font-size: clamp(28px, 2.4vw, 38px);
    letter-spacing: -.04em;
}

.vws-platform-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.vws-platform-card ul {
    margin: 22px 0 0;
    padding-left: 18px;
    color: #334155;
    font-size: 14px;
    font-weight: 650;
}

.vws-platform-card li {
    margin-bottom: 8px;
}

.vws-platform-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 28px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.vws-platform-link:hover {
    color: var(--deep);
}

@media (max-width: 900px) {
    .vws-portfolio-header {
        display: block;
    }

    .vws-portfolio-header .btn {
        margin-top: 22px;
    }

    .vws-platform-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .vws-platform-card {
        min-height: auto;
    }
}

.site-nav--desktop {
    display: flex;
}

.mobile-nav-toggle,
.mobile-nav-panel {
    display: none;
}

@media (max-width: 991.98px) {
    .site-nav--desktop {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .mobile-nav-panel.is-open {
        display: block;
    }
}
