/* ============================================================
   TOKENS
============================================================ */
:root {
    --paper: #FBFAF7;
    --surface: #FFFFFF;
    --ink: #14121F;
    --ink-soft: #312D40;
    --muted: #6B6478;
    --line: rgba(20, 18, 31, .12);
    --violet: #7C3AED;
    --violet-deep: #4C1D95;
    --violet-tint: #F1E9FF;
    --lime: #E7E9F0;
    --coral: #2F5FFF;
    --sky: #3FD0FF;
    --radius: 1.625rem;
    --radius-sm: .875rem;
    --ease: cubic-bezier(.16, .84, .32, 1);
    --container: 81.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 6.25rem;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* grain texture overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: .035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8.125rem 0;
    position: relative;
}

@media(max-width:35rem) {

    .container,
    .navbar {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    section {
        padding: 50px 0;
        position: relative;
    }
}

h1,
h2,
h3,
h4 {
    /* font-family: 'Bricolage Grotesque', sans-serif; */
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.25;
    font-weight: 700;
}

.mono {
    font-family: 'Space Mono', monospace;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5625rem;
    font-family: 'Space Mono', monospace;
    font-size: .7813rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--violet);
}

.eyebrow::before {
    content: "";
    width: .4375rem;
    height: .4375rem;
    border-radius: 50%;
    background: var(--coral);
}

.eyebrow.on-dark {
    color: var(--lime);
}

.eyebrow.on-dark::before {
    background: var(--coral);
}

.section-head {
    max-width: 46.875rem;
    margin-bottom: 4rem;
}

.section-head h2 {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    margin-top: 1rem;
}

.section-head p {
    color: var(--muted);
    font-size: 1.0938rem;
    margin-top: 1.125rem;
    max-width: 33.75rem;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}

/* scroll progress */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: .1875rem;
    background: linear-gradient(90deg, var(--violet), var(--coral));
    z-index: 1200;
    width: 0%;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(1.875rem);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.d1.in-view {
    transition-delay: .08s;
}

.d2.in-view {
    transition-delay: .16s;
}

.d3.in-view {
    transition-delay: .24s;
}

.d4.in-view {
    transition-delay: .32s;
}

.d5.in-view {
    transition-delay: .4s;
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    * {
        animation: none !important;
    }
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    padding: .6875rem 1.875rem;
    border-radius: .3125rem;
    font-weight: 600;
    font-size: .9375rem;
    transition: .3s var(--ease);
    white-space: nowrap;
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: var(--coral);
}

.btn-outline {
    border: .0938rem solid var(--line);
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.btn-lime {
    background: var(--lime);
    color: var(--ink);
}

.btn-lime:hover {
    background: var(--coral);
    color: #fff;
}

.btn-ghost {
    border: .0938rem solid rgba(255, 255, 255, .2);
    color: #fff;
}

.btn-ghost:hover {
    background: #fff;
    color: var(--ink);
}

/* ============================================================
   TICKER BAR
============================================================ */
.ticker-bar {
    background: var(--ink);
    color: #fff;
    padding: .5625rem 0;
    overflow: hidden;
    position: relative;
    z-index: 500;
}

.ticker-track {
    display: flex;
    gap: 3.125rem;
    width: max-content;
    animation: tick 100s linear infinite;
}

.ticker-track span {
    font-family: 'Space Mono';
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #B9AFD6;
    white-space: nowrap;
}

.ticker-track span i {
    color: var(--lime);
    margin-right: .5rem;
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.25rem 0;
    transition: .4s var(--ease);
}

.site-header.scrolled {
    padding: .75rem 0;
    background: rgba(251, 250, 247, .75);
    backdrop-filter: blur(1rem);
    border-bottom: .0625rem solid var(--line);
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.3125rem;
}

.brand img {
    width: 7.5rem;
}

.brand-mark {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: .5625rem;
    background: var(--coral);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .125rem;
}

.nav-links a {
    padding: .4375rem .8125rem;
    border-radius: .3125rem;
    font-weight: 600;
    font-size: .9375rem;
    color: var(--ink-soft);
    transition: .25s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--ink);
    color: #fff;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: .625rem;
}

.menu-toggle {
    display: none;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 50%;
    border: .0938rem solid var(--line);
    background: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.1875rem;
}

.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(22.5rem, 88%);
    background: var(--ink);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.offcanvas.open {
    transform: translateX(0);
}

.offcanvas-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.125rem;
}

.offcanvas-head .brand {
    color: #fff;
}

.offcanvas-close {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: none;
    font-size: 1.125rem;
}

.offcanvas-links a {
    font-family: 'Bricolage Grotesque';
    font-size: 1.625rem;
    font-weight: 700;
    color: #fff;
    padding: .875rem .125rem;
    display: flex;
    justify-content: space-between;
    border-bottom: .0625rem solid rgba(255, 255, 255, .1);
}

.offcanvas-links a i {
    color: var(--lime);
    font-size: 1rem;
}

.offcanvas-foot {
    margin-top: auto;
    padding-top: 1.875rem;
    border-top: .0625rem solid rgba(255, 255, 255, .1);
    text-align: center;
}

.offcanvas-foot .btn {
    width: 100%;
    margin-bottom: 10px;
}

.offcanvas-foot .canvas-link {
    color: #e5e5e5;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
}

.scrim {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 16, .6);
    backdrop-filter: blur(.125rem);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}

.scrim.open {
    opacity: 1;
    pointer-events: auto;
}

.header-start-project-btn {
    display: block;
}

@media(max-width:56.25rem) {

    .nav-links,
    .nav-cta .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-start-project-btn {
        display: none;
    }
}

/* ============================================================
   HERO
============================================================ */

.hero {
    min-height: 96vh;
    display: flex;
    align-items: center;
    padding: 3.75rem 0 5.625rem;
    overflow: hidden;
}

.mesh {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.mesh span {
    position: absolute;
    border-radius: 50%;
    filter: blur(4.375rem);
    opacity: .55;
    animation: float 14s ease-in-out infinite;
}

.mesh .b1 {
    width: 30rem;
    height: 30rem;
    background: var(--violet);
    top: -8.75rem;
    right: -6.25rem;
}

.mesh .b2 {
    width: 23.75rem;
    height: 23.75rem;
    background: var(--coral);
    bottom: -7.5rem;
    left: -5rem;
    animation-delay: -4s;
    opacity: .3;
}

.mesh .b3 {
    width: 18.75rem;
    height: 18.75rem;
    background: var(--ink);
    top: 40%;
    left: 38%;
    animation-delay: -8s;
    opacity: .18;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(1.875rem, -1.875rem) scale(1.08);
    }
}

.spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(26.25rem circle at var(--mx, 50%) var(--my, 50%), rgba(124, 58, 237, .10), transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3.125rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy .eyebrow {
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7.4vw, 4.25rem);
}

.hero-title .line2 {
    display: block;
    background: linear-gradient(100deg, var(--violet), var(--coral) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 30rem;
    margin-top: 1.625rem;
    font-size: 1.125rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: .875rem;
    margin-top: 2.375rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 3.5rem;
    border-top: .0938rem solid var(--line);
    padding-top: 1.625rem;
    max-width: 32.5rem;
}

.hstat {
    flex: 1;
    padding-right: 1.125rem;
}

.hstat+.hstat {
    border-left: .0938rem solid var(--line);
    padding-left: 1.125rem;
}

.hstat b {
    display: block;
    font-family: 'Bricolage Grotesque';
    font-size: 1.875rem;
}

.hstat span {
    font-size: .75rem;
    color: var(--muted);
    font-family: 'Space Mono';
    letter-spacing: .04em;
}

/* hero image */
.hero-image {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 2.5rem 5.625rem rgba(20, 18, 31, .18);
    object-fit: cover;
    height: 37.5rem;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.progress-track {
    height: .3125rem;
    background: rgba(255, 255, 255, .08);
    border-radius: .625rem;
    margin: 1rem 0 .25rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--violet), var(--coral));
    border-radius: .625rem;
    transition: width 1.4s var(--ease);
}

.mock-body {
    background: #100D1C;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
}

@media(max-width:67.5rem) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title,
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:35rem) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hstat+.hstat {
        border-left: none;
        padding-left: 0;
        border-top: .0938rem solid var(--line);
        padding-top: 1rem;
    }
}

/* ============================================================
   TRUSTED
============================================================ */
.trusted {
    padding: 3.75rem 0;
    border-top: .0938rem solid var(--line);
    border-bottom: .0938rem solid var(--line);
}

.trusted-label {
    text-align: center;
    font-family: 'Space Mono';
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2.125rem;
}

.marquee-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3.75rem;
    width: max-content;
    animation: marquee 50s linear infinite;
}

.marquee-track img {
    height: 6.875rem;
    width: 6.875rem;
    object-fit: contain;
}

/* .marquee-track:hover {
    animation-play-state: paused;
} */

.client-word {
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.4375rem;
    color: #C7C2D2;
    transition: .3s;
}

.client-word:hover {
    color: var(--ink);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   ABOUT — editorial layout (no cards)
============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 4.75rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-dots {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 12.5rem;
    height: 12.5rem;
    background-image: radial-gradient(var(--violet) .1375rem, transparent .1375rem);
    background-size: 1.125rem 1.125rem;
    opacity: .3;
    border-radius: 1.25rem;
    z-index: 0;
}

.about-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 34.375rem;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 1.875rem 4.375rem rgba(20, 18, 31, .12);
}

.about-stat {
    position: absolute;
    z-index: 2;
    bottom: -1.75rem;
    left: -1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(150deg, #1E1A2E, var(--ink));
    color: #fff;
    border-radius: 1.25rem;
    padding: 1.375rem 1.75rem;
    box-shadow: 0 1.5625rem 3.75rem rgba(20, 18, 31, .35);
    border: .0625rem solid rgba(124, 58, 237, .35);
    min-width: 15rem;
}

.about-stat-icon {
    width: 3.125rem;
    height: 3.125rem;
    flex-shrink: 0;
    border-radius: .8125rem;
    background: linear-gradient(135deg, var(--violet), var(--coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3125rem;
    color: #fff;
}

.about-stat b {
    font-family: 'Bricolage Grotesque';
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    display: block;
}

.about-stat span {
    font-size: 1rem;
    color: #E5E5E5;
    display: block;
    margin-top: .3125rem;
}

.about-content {
    padding-left: .5rem;
}

.about-content h2 {
    font-size: clamp(2rem, 3.6vw, 2.875rem);
    margin-top: 1rem;
    /* max-width: 33.75rem; */
}

.about-content p {
    color: var(--muted);
    font-size: 1.0625rem;
    margin-top: 1.25rem;
    /* max-width: 32.5rem; */
}

.about-list {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    font-size: .9688rem;
    color: var(--ink-soft);
}

.about-list li i {
    color: var(--violet);
    font-size: 1.1875rem;
    flex-shrink: 0;
}

.about-metrics {
    display: flex;
    gap: 0;
    margin-top: 2.625rem;
    border-top: .0938rem solid var(--line);
    padding-top: 1.5rem;
    /* max-width: 28.75rem; */
}

.about-metrics div {
    flex: 1;
    padding-right: 1rem;
}

.about-metrics div+div {
    border-left: .0938rem solid var(--line);
    padding-left: 1rem;
}

.about-metrics b {
    display: block;
    font-family: 'Bricolage Grotesque';
    font-size: 1.625rem;
}

.about-metrics span {
    font-size: .75rem;
    color: var(--muted);
    font-family: 'Space Mono';
}

.about-content .btn {
    margin-top: 2.75rem;
}

@media(max-width:61.9375rem) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.25rem;
    }

    .about-media {
        max-width: 28.75rem;
        margin: 0 auto;
    }

    .about-dots {
        display: none;
    }

    .about-stat {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -2.5rem auto 0;
        display: flex;
        width: fit-content;
    }

    .about-content {
        text-align: center;
        padding-left: 0;
    }

    .about-content h2,
    .about-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-list {
        align-items: center;
    }

    .about-list li {
        max-width: 22.5rem;
    }

    .about-metrics {
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:35rem) {
    .about-stat {
        flex-direction: column;
        text-align: center;
        gap: .625rem;
    }

    .about-metrics {
        flex-direction: column;
        gap: 1rem;
    }

    .about-metrics div+div {
        border-left: none;
        padding-left: 0;
        border-top: .0938rem solid var(--line);
        padding-top: 1rem;
    }
}

/* ============================================================
   SERVICES BENTO
============================================================ */
.serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 13.75rem;
    gap: 1.125rem;
}

.serv-card {
    border-radius: var(--radius);
    padding: 2rem;
    border: .0625rem solid var(--line);
    background: var(--surface);
    transition: .4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.serv-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.875rem 3.75rem rgba(20, 18, 31, .10);
    border-color: var(--ink);
}

.serv-card.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(20, 18, 31, .88)), url('../images/odoo-software.webp') center/cover no-repeat;
    color: #fff;
    border: none;
}

.serv-num {
    font-family: 'Space Mono';
    font-size: .75rem;
    color: var(--muted);
}

.serv-card.featured .serv-num {
    color: #B9AFD6;
}

.serv-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: .875rem;
    background: var(--violet-tint);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4375rem;
    margin: .875rem 0;
}

.serv-card.featured .serv-icon {
    background: rgba(0, 52, 255, 0.7);
    color: #FFF;
}

.serv-card h4 {
    font-size: 1.375rem;
}

.serv-card.featured h4 {
    font-size: 1.875rem;
    color: white;
}

.serv-card p {
    color: var(--muted);
    font-size: .9063rem;
    margin-top: .5rem;
}

.serv-card.featured p {
    color: #E5E5E5;
    font-size: 1rem;
    max-width: 40rem;
}

.serv-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: .875rem;
}

.serv-link i {
    transition: .3s;
}

.serv-card:hover .serv-link i {
    transform: translateX(.25rem);
}

@media(max-width:62.5rem) {
    .serv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .serv-card.featured {
        grid-column: span 2;
    }
}

@media(max-width:37.5rem) {
    .serv-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .serv-card,
    .serv-card.featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 12.5rem;
    }
}

/* ============================================================
   TECH STRIP — boxed + centered
============================================================ */
.tech-boxed {
    max-width: 61.25rem;
    margin: 0 auto;
}

.tech-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .625rem;
    margin-bottom: 2.75rem;
}

.tech-tab {
    font-family: 'Space Mono';
    font-size: .8125rem;
    font-weight: 700;
    padding: .6875rem 1.625rem;
    border-radius: .3125rem;
    background: var(--surface);
    border: .0938rem solid var(--line);
    cursor: pointer;
    transition: .25s;
    color: var(--ink-soft);
}

.tech-tab.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.tech-rail {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: .875rem;
}

.tech-rail.active {
    display: flex;
}

.tech-chip {
    flex: 0 1 9.375rem;
    background: var(--surface);
    border: .0938rem solid var(--line);
    border-radius: 1.125rem;
    padding: 1.625rem 1rem;
    text-align: center;
    transition: .3s var(--ease);
}

.tech-chip:hover {
    transform: translateY(-0.375rem);
    border-color: var(--violet);
    box-shadow: 0 1.125rem 2.5rem rgba(20, 18, 31, .08);
}

.chip-mark {
    width: 2.875rem;
    height: 2.875rem;
    margin: 0 auto .75rem;
    object-fit: contain;
}

.tech-chip h5 {
    font-size: .9063rem;
    font-weight: 600;
}

@media(max-width:35rem) {
    .tech-chip {
        flex: 0 1 calc(50% - .875rem);
    }
}

/* ============================================================
   WHY — DARK BENTO
============================================================ */
.why-section {
    background: var(--ink);
    color: #fff;
}

.why-head {
    max-width: 40rem;
    margin-bottom: 3.75rem;
}

.why-head h2 {
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    margin-top: 1rem;
}

.why-head p {
    color: #A79FC0;
    font-size: 1.0938rem;
    margin-top: 1rem;
}

.why-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 10.625rem;
    gap: 1.125rem;
}

.why-cell {
    border-radius: 1.375rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .35s var(--ease);
}

.why-cell:hover {
    transform: translateY(-0.375rem);
}

.why-cell.dark {
    background: #1E1A2E;
    border: .0625rem solid rgba(255, 255, 255, .08);
}

.why-cell.violet {
    background: var(--violet);
}

.why-cell.lime {
    background: var(--lime);
    color: var(--ink);
}

.why-cell.coral {
    background: var(--coral);
}

.why-cell h4 {
    font-size: 1.1875rem;
    color: #fff;
}

.why-cell.lime h4 {
    color: var(--ink);
}

.why-cell p {
    font-size: 16px;
    color: #ffffff;
    margin-top: .5rem;
}

.why-cell.lime p {
    color: #4B5563;
}

.why-cell .bi {
    font-size: 1.5rem;
    color: var(--lime);
}

.why-cell.lime .bi {
    color: var(--ink);
}

@media(max-width:62.5rem) {
    .why-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:35rem) {
    .why-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .why-cell {
        min-height: 9.375rem;
    }
}

/* ============================================================
   INDUSTRIES
============================================================ */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ind-card {
    background: var(--surface);
    border: .0625rem solid var(--line);
    border-radius: 1.25rem;
    padding: 1.875rem 1.25rem;
    text-align: center;
    transition: .3s var(--ease);
}

.ind-card:hover {
    transform: translateY(-0.5rem);
    background: var(--ink);
    border-color: var(--ink);
}

.ind-card:hover h4,
.ind-card:hover p {
    color: #fff;
}

.ind-card:hover .ind-icon {
    background: var(--lime);
    color: var(--ink);
}

.ind-icon {
    width: 3.125rem;
    height: 3.125rem;
    margin: 0 auto 1rem;
    border-radius: .875rem;
    background: var(--violet-tint);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3125rem;
    transition: .3s;
}

.ind-card h4 {
    font-size: 1.0313rem;
    margin-bottom: .375rem;
    transition: .3s;
}

.ind-card p {
    font-size: .8125rem;
    color: var(--muted);
    transition: .3s;
}

@media(max-width:56.25rem) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   PORTFOLIO — asymmetric
============================================================ */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.375rem;
}

.proj-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: .4s var(--ease);
}

.proj-card:hover {
    transform: translateY(-0.5rem);
}

.proj-card.wide {
    grid-column: span 4;
}

.proj-card.narrow {
    grid-column: span 2;
}

.proj-img,
.proj-img-mobile {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .proj-img-mobile{
    aspect-ratio: 2/3;
} */
.proj-card.wide .proj-img {
    aspect-ratio: 16/9;
}

.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s var(--ease);
}

.proj-card:hover .proj-img img {
    transform: scale(1.07);
}

.proj-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.625rem;
}

.proj-tag {
    display: inline-block;
    padding: .375rem .875rem;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(.375rem);
    color: #fff;
    border-radius: .3125rem;
    font-family: 'Space Mono';
    font-size: .6875rem;
    margin-bottom: .75rem;
    width: fit-content;
}

.proj-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
}

.proj-overlay p {
    color: #E5E5E5;
    font-size: 16px;
    margin-top: .375rem;
    max-width: 600px;
}

@media(max-width:56.25rem) {

    .proj-card.wide,
    .proj-card.narrow {
        grid-column: span 6;
    }
}

/* ============================================================
   PROCESS — rounded padded cards + hover preview image
============================================================ */
.process-rail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-row {
    display: grid;
    grid-template-columns: 6.25rem 1fr auto;
    align-items: center;
    gap: 1.75rem;
    padding: 1.875rem 2rem;
    border: .0938rem solid var(--line);
    border-radius: 1.5625rem;
    background: var(--surface);
    transition: .3s var(--ease);
    position: relative;
    overflow: visible;
}

.process-row:hover {
    background: var(--violet-tint);
    border-color: var(--violet);
    transform: translateY(-0.1875rem);
}

.process-num {
    font-family: 'Bricolage Grotesque';
    font-size: 2.75rem;
    color: var(--line);
    font-weight: 700;
    transition: .3s;
}

.process-row:hover .process-num {
    color: var(--violet);
}

.process-text h4 {
    font-size: 1.5rem;
}

.process-text p {
    color: var(--muted);
    margin-top: .5rem;
    max-width: 30rem;
    font-size: 16px;
}

.process-thumb {
    position: absolute;
    right: 6rem;
    top: 50%;
    transform: translateY(-50%) scale(.85);
    width: 10rem;
    height: 6.875rem;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 0;
    transition: .35s var(--ease);
    pointer-events: none;
    box-shadow: 0 1.25rem 2.5rem rgba(20, 18, 31, .18);
    z-index: 2;
}

.process-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-row:hover .process-thumb {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.process-arrow {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: .0938rem solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: .3s;
    position: relative;
    z-index: 3;
    background: var(--surface);
}

.process-row:hover .process-arrow {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(45deg);
}

@media(max-width:43.75rem) {
    .process-row {
        grid-template-columns: 3.75rem 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .process-arrow,
    .process-thumb {
        display: none;
    }

    .process-num {
        font-size: 2rem;
    }
}

/* ============================================================
   CTA
============================================================ */
.cta-section {
    background: var(--ink);
}

.cta-panel {
    background: linear-gradient(135deg, #1E1A2E, #14121F);
    border: .0625rem solid rgba(255, 255, 255, .08);
    border-radius: 2.25rem;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: "";
    position: absolute;
    width: 25rem;
    height: 25rem;
    background: var(--violet);
    filter: blur(6.25rem);
    opacity: .4;
    top: -9.375rem;
    left: -6.25rem;
}

.cta-panel h2 {
    color: #fff;
    font-size: clamp(2.125rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
}

.cta-panel p {
    color: #E5E5E5;
    font-size: 1.0625rem;
    margin: 1.25rem auto 0;
    max-width: 32.5rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

@media(max-width:43.75rem) {
    .cta-panel {
        padding: 3.125rem 1.625rem;
    }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.test-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.test-nav {
    display: flex;
    gap: .625rem;
}

.test-btn {
    width: 3rem;
    height: 3rem;
    border-radius: .3125rem;
    border: .0938rem solid var(--line);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: .3s;
    color: var(--ink);
}

.test-btn:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.test-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

.test-viewport {
    overflow: hidden;
}

.test-rail {
    display: flex;
    gap: 1.375rem;
    transition: transform .5s var(--ease);
    will-change: transform;
}

.test-card {
    flex: 0 0 calc((100% - 2.75rem) / 3);
    min-width: 0;
    background: var(--surface);
    border: .0625rem solid var(--line);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: .3s var(--ease);
}

@media(max-width:61.9375rem) {
    .test-card {
        flex: 0 0 calc((100% - 1.375rem) / 2);
    }
}

@media(max-width:40rem) {
    .test-card {
        flex: 0 0 100%;
    }
}

.test-card:hover {
    transform: translateY(-0.375rem);
}

.stars {
    color: var(--coral);
    font-size: 1rem;
    letter-spacing: .1875rem;
    margin-bottom: 1.25rem;
}

.test-card h3 {
    font-size: 1.375rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.test-card p {
    color: var(--muted);
    font-size: .9063rem;
    margin-bottom: 1.5rem;
}

.test-person {
    display: flex;
    align-items: center;
    gap: .875rem;
}

.test-person img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.test-person b {
    display: block;
    font-size: .9375rem;
}

.test-person span {
    color: var(--muted);
    font-size: .8125rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 3.75rem;
    align-items: flex-start;
}

.faq-item {
    border: .0938rem solid var(--line);
    border-radius: 1.125rem;
    margin-bottom: .875rem;
    overflow: hidden;
    background: var(--surface);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Bricolage Grotesque';
    font-weight: 700;
    font-size: 1.125rem;
}

.faq-q i {
    transition: .3s var(--ease);
    color: var(--violet);
    flex-shrink: 0;
    margin-left: .875rem;
}

.faq-item.open {
    border-color: var(--ink);
}

.faq-item.open .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq-a div {
    padding: 0 1.75rem 1.625rem;
    color: var(--muted);
    font-size: .9375rem;
}

@media(max-width:61.9375rem) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--ink);
    color: #fff;
    padding-top: 6.875rem;
}

.footer-hero {
    text-align: center;
    padding-bottom: 5.625rem;
}

.footer-hero .eyebrow {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.footer-hero h2 {
    color: #fff;
    font-size: clamp(2.75rem, 9vw, 7.5rem);
}

.footer-hero a.mail {
    display: inline-block;
    margin-top: 1.625rem;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    color: var(--coral);
    border-bottom: .125rem solid var(--coral);
    padding-bottom: .25rem;
    font-family: 'Space Mono';
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr 1.5fr;
    gap: 2.5rem;
    padding: 3.75rem 0;
    border-top: .0625rem solid rgba(255, 255, 255, .1);
}

.footer-brand p {
    color: #e5e5e5;
    max-width: 20rem;
    font-size: .9063rem;
    margin: 1.25rem 0 1.625rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #1E1A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--violet);
}

.footer h5 {
    font-size: .875rem;
    margin-bottom: 1.25rem;
    color: #8A82A0;
    font-family: 'Space Mono';
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer ul li {
    margin-bottom: .8125rem;
}

.footer ul li a {
    color: #C9C2DB;
    font-size: .9063rem;
    transition: .25s;
}

.footer ul li a:hover {
    color: var(--coral);
    padding-left: .25rem;
}

.footer-contact {
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.contact-form input,
.contact-form select {
    width: 100%;
    height: 2.875rem;
    border: .0625rem solid rgba(255, 255, 255, .14);
    border-radius: .3125rem;
    background: #1E1A2E;
    color: #fff;
    padding: 0 1rem;
    font-size: .8438rem;
    font-family: inherit;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238A82A0' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .875rem center;
}

.contact-form select:invalid {
    color: #5C5570;
}

.contact-form input::placeholder {
    color: #5C5570;
}

.contact-form button {
    height: 2.875rem;
    border-radius: .3125rem;
    background: var(--coral);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .875rem;
    transition: .3s;
    font-family: 'Inter', sans-serif;
}

.contact-form button:hover {
    background: var(--lime);
    color: #000;
}

.contact-form button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.form-status {
    font-size: .8125rem;
    min-height: 1rem;
    margin-top: -0.125rem;
}

.form-status.success {
    color: #8CF2A6;
}

.form-status.error {
    color: #FF9B9B;
}

.footer-bottom {
    padding: 1.625rem 0;
    border-top: .0625rem solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #5C5570;
    font-size: .8438rem;
}

.footer-bottom .legal {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom .legal a {
    color: #8A82A0;
    font-size: .8438rem;
}

.footer-bottom .legal a:hover {
    color: #fff;
}

@media(max-width:61.9375rem) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:35rem) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.skip-link {
    position: absolute;
    left: -62.4375rem;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: .75rem 1.25rem;
    z-index: 2000;
    border-radius: 0 0 .625rem 0;
}

.skip-link:focus {
    left: 0;
}

a:focus-visible,
button:focus-visible {
    outline: .125rem solid var(--violet);
    outline-offset: .1875rem;
}






/*---------------------CONTACT PAGE CSS------------------------------*/
/* ============================================================
   CONTACT PAGE — extends assets/css/style.css tokens
   Load AFTER style.css
============================================================ */

/* ---------- Contact hero ---------- */
.contact-hero {
    padding: 5.625rem 0 4.375rem;
    overflow: hidden;
    position: relative;
}

.contact-hero-inner {
    /* max-width: 47.5rem; */
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-title {
    font-size: clamp(2.625rem, 6.4vw, 3.875rem);
    margin-top: 1.125rem;
    text-align: center;
}

.contact-title .line2 {
    background: linear-gradient(100deg, var(--violet), var(--coral) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    max-width: 48.75rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--muted);
    text-align: center;
}

.quick-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: .875rem;
    margin-top: 2.75rem;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: 1rem 1.375rem;
    border: .0938rem solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    transition: .3s var(--ease);
    text-align: left;
}

.quick-item:hover {
    border-color: var(--violet);
    transform: translateY(-0.25rem);
    box-shadow: 0 1.125rem 2.5rem rgba(20, 18, 31, .08);
}

.quick-item i {
    width: 2.625rem;
    height: 2.625rem;
    flex-shrink: 0;
    border-radius: .75rem;
    background: var(--violet-tint);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.quick-item div {
    display: flex;
    flex-direction: column;
}

.quick-item span {
    font-family: 'Space Mono';
    font-size: .6875rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.quick-item b {
    font-size: .9063rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: .125rem;
}

@media(max-width:35rem) {
    .quick-item {
        width: 100%;
    }
}

/* ---------- Form + info layout ---------- */
.contact-main {
    padding-top: 5.625rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-panel {
    background: var(--surface);
    border: .0938rem solid var(--line);
    border-radius: var(--radius);
    padding: 3rem;
}

.contact-form-panel h2 {
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    margin-top: .875rem;
}

.panel-sub {
    color: var(--muted);
    font-size: .9688rem;
    margin-top: .875rem;
    max-width: 28.75rem;
}

.full-contact-form {
    margin-top: 2.125rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-field label {
    font-family: 'Space Mono';
    font-size: .7188rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.form-field label span {
    color: var(--muted);
    text-transform: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
}

.full-contact-form input,
.full-contact-form select,
.full-contact-form textarea {
    width: 100%;
    border: .0938rem solid var(--line);
    border-radius: .3125rem;
    background: var(--paper);
    color: var(--ink);
    padding: .8125rem 1rem;
    font-size: .9063rem;
    font-family: inherit;
    transition: .25s;
}

.full-contact-form input:focus,
.full-contact-form select:focus,
.full-contact-form textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: var(--surface);
}

.full-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236B6478' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.full-contact-form select:invalid {
    color: var(--muted);
}

.full-contact-form textarea {
    resize: vertical;
    min-height: 8.125rem;
    font-family: inherit;
}

.full-contact-form button[type="submit"] {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .8125rem 2rem;
    border-radius: .3125rem;
    background: var(--ink);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: .9375rem;
    cursor: pointer;
    transition: .3s var(--ease);
}

.full-contact-form button[type="submit"]:hover {
    background: var(--violet);
}

.full-contact-form button[type="submit"]:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.contact-form-panel .form-status {
    font-size: .8438rem;
    min-height: 1.125rem;
}

.contact-form-panel .form-status.success {
    color: #1E8E4F;
}

.contact-form-panel .form-status.error {
    color: #C4293B;
}

@media(max-width:40rem) {
    .contact-form-panel {
        padding: 1.875rem 1.375rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Info panel (right column) ---------- */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: 6.875rem;
}

.info-card.dark {
    background: linear-gradient(150deg, #1E1A2E, var(--ink));
    color: #fff;
    border-radius: var(--radius);
    padding: 2.125rem;
    border: .0625rem solid rgba(124, 58, 237, .35);
}

.info-card-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: .875rem;
    background: rgba(255, 255, 255, .1);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin-bottom: 1.125rem;
}

.info-card.dark h4 {
    color: #fff;
    font-size: 1.3125rem;
}

.info-card.dark p {
    color: #C9C2DB;
    font-size: .9063rem;
    margin: .625rem 0 1.375rem;
}

.info-card.dark .btn {
    width: 100%;
}

.info-list {
    background: var(--surface);
    border: .0938rem solid var(--line);
    border-radius: var(--radius);
    padding: .5rem 1.875rem;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.375rem 0;
}

.info-list-item+.info-list-item {
    border-top: .0625rem solid var(--line);
}

.info-list-item i {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: .6875rem;
    background: var(--violet-tint);
    color: var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0625rem;
}

.info-list-item b {
    display: block;
    font-size: .9375rem;
}

.info-list-item span {
    display: block;
    color: var(--muted);
    font-size: .8438rem;
    margin-top: .1875rem;
}

.info-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.875rem;
    border: .0938rem solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.info-social span {
    font-family: 'Space Mono';
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.info-social .footer-social a {
    background: var(--paper);
    border: .0938rem solid var(--line);
    color: var(--ink);
}

.info-social .footer-social a:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: #fff;
}

@media(max-width:61.9375rem) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        position: static;
    }
}

/* ---------- Next-steps section tweaks (reuses .process-section) ---------- */
#next-steps {
    padding-top: 5.625rem;
}

/*---------------------ABOUT PAGE CSS------------------------------*/
/* ============================================================
   ABOUT PAGE — extends assets/css/style.css tokens
   Load AFTER style.css
============================================================ */

/* ---------- shared dotted pattern utility ---------- */
.dot-field {
    background-image: radial-gradient(var(--violet) .1375rem, transparent .1375rem);
    background-size: 1.125rem 1.125rem;
    opacity: .3;
    border-radius: 1.25rem;
}

/* section-wide dotted wash, sits behind the whole section content */
.dot-wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(var(--ink) .1rem, transparent .1rem);
    background-size: 1.625rem 1.625rem;
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 0%, #000 0%, transparent 75%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 0%, #000 0%, transparent 75%);
    opacity: .06;
}

.dot-wash.on-dark {
    background-image: radial-gradient(#fff .1rem, transparent .1rem);
    opacity: .07;
}

/* ---------- About hero — centered, gradient + glass ---------- */
.about-hero {
    background: var(--ink);
    color: #fff;
    padding: 9.375rem 0 6.25rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero .mesh .b1 {
    background: var(--violet);
    top: -10rem;
    right: -3.75rem;
}

.about-hero .mesh .b2 {
    background: var(--coral);
    bottom: -10rem;
    left: -3.75rem;
    opacity: .28;
}

.about-hero .mesh .b3 {
    background: var(--sky);
    top: 30%;
    left: 45%;
    opacity: .14;
}

.about-hero-inner {
    max-width: 45rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-inner .eyebrow {
    justify-content: center;
}

.about-hero-title {
    font-size: clamp(2.375rem, 5.6vw, 3.5rem);
    color: #fff;
    margin-top: 1.125rem;
}

.about-hero-title .line2 {
    display: block;
    background: linear-gradient(100deg, var(--sky), var(--coral) 65%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-inner p {
    max-width: 35rem;
    margin: 1.375rem auto 0;
    font-size: 1.0938rem;
    color: #B9AFD6;
}

.about-hero-actions {
    display: flex;
    gap: .875rem;
    justify-content: center;
    margin-top: 2.125rem;
    flex-wrap: wrap;
}

/* glassmorphism stat strip */
.glass-stats {
    display: inline-flex;
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: .0625rem solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-sm);
    padding: 1.5rem .5rem;
    box-shadow: 0 1.875rem 4.375rem rgba(20, 18, 31, .35);
}

.glass-stats div {
    padding: 0 2rem;
    border-right: .0625rem solid rgba(255, 255, 255, .14);
}

.glass-stats div:last-child {
    border-right: none;
}

.glass-stats b {
    display: block;
    font-family: 'Bricolage Grotesque';
    font-size: 1.625rem;
    color: #fff;
}

.glass-stats span {
    display: block;
    margin-top: .25rem;
    font-size: .6875rem;
    font-family: 'Space Mono';
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #E5E5E5;
}

@media(max-width:40rem) {
    .about-hero {
        padding: 8.125rem 0 4.375rem;
    }

    .glass-stats {
        flex-direction: column;
        gap: .875rem;
        padding: 1.375rem 1.625rem;
    }

    .glass-stats div {
        border-right: none;
        padding: 0;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: .625rem;
    }
}

/* ---------- What we do — minimal list ---------- */
.what-we-do {
    padding-top: 6.25rem;
}

.wwd-list {
    display: flex;
    flex-direction: column;
}

.wwd-row {
    display: grid;
    grid-template-columns: 5.625rem 1fr;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.875rem 0;
    border-top: .0625rem solid var(--line);
}

.wwd-list .wwd-row:last-child {
    border-bottom: .0625rem solid var(--line);
}

.wwd-row i {
    font-size: 1.625rem;
    color: var(--violet);
}

.wwd-row h4 {
    font-size: 1.25rem;
}

.wwd-row p {
    color: var(--muted);
    font-size: .9375rem;
    margin-top: .375rem;
    max-width: 32.5rem;
}

@media(max-width:35rem) {
    .wwd-row {
        grid-template-columns: 2.75rem 1fr;
    }
}

/* ---------- Values (bento, light) ---------- */
.values-section {
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
    position: relative;
    z-index: 1;
}

.value-card {
    border-radius: 1.375rem;
    padding: 1.875rem 1.625rem;
    min-height: 13.125rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: .0625rem solid var(--line);
    background: var(--surface);
    transition: .35s var(--ease);
}

.value-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 1.5rem 3.125rem rgba(20, 18, 31, .10);
}

.value-card.violet {
    background: var(--violet);
    border: none;
}

.value-card.dark {
    background: var(--ink);
    border: none;
}

.value-card.coral {
    background: var(--coral);
    border: none;
}

.value-card .bi {
    font-size: 1.5rem;
    color: var(--violet);
}

.value-card.violet .bi,
.value-card.dark .bi,
.value-card.coral .bi {
    color: var(--lime);
}

.value-card h4 {
    font-size: 1.1563rem;
    margin-top: .875rem;
}

.value-card.violet h4,
.value-card.dark h4,
.value-card.coral h4 {
    color: #fff;
}

.value-card p {
    font-size: .8438rem;
    color: var(--muted);
    margin-top: .5rem;
}

.value-card.violet p {
    color: #E9DEFF;
}

.value-card.dark p {
    color: #B9AFD6;
}

.value-card.coral p {
    color: #DCE6FF;
}

@media(max-width:62.5rem) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:35rem) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}