:root {
    --ink: #2E3153;
    --navy: #464B71;
    --glass: #118AB2;
    --mist: #7CD5C7;
    --paper: #F2F2ED;
    --white: #FFFFFF;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    --container: 1152px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-soft: 0 24px 48px -28px rgba(46,49,83,.45);
    --shadow-tight: 0 10px 24px -14px rgba(46,49,83,.4);
}



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -.01em;
}

:focus-visible {
    outline: 3px solid var(--glass);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

.wrap {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;

}

.eyebrow {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--glass);

    font-weight: 500;
    display: inline-block;
    margin-bottom: 14px;
}

section {
    padding: 76px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 44px;

}

.section-head h2{
    font-size: clamp(1.7rem, 4.2vw, 2.5rem);
    color: var(--navy);
}

.section-head p{
    margin-top: 14px;
    font-size: 1.05rem;
    color: #555a7a;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    min-height: 52px;

    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
    background: var(--glass);
    color: var(--white);
    box-shadow: var(--shadow-tight);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -14px rgba(17,138,178,.55);
}

.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid rgba(70,75,113,.18);
}

.btn-ghost:hover {
    border-color: var(--glass);
    color: var(--glass);
}

.btn-block {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(242,242,237,.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(70,75,113,.1);
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 30px;
    height: 30px;
    position: relative;
    flex: none;
}

.logo-mark span {
    position: absolute;
    top: 0;
    width: 16px;
    height: 30px;
    border-radius: 5px;
}

.logo-mark span:nth-child(1) {
    left: 0;
    background: var(--glass);
}

.logo-mark span:nth-child(2) {
    left: 9px;
    background: var(--mist);
    opacity: .85;
}

.main-nav ul {
    display: flex;
    gap: 34px;
}

.main-nav a {
    font-weight: 500;
    font-size: .96rem;
    color: var(--ink);
    opacity: .85;
}

.main-nav a:hover {
    opacity: 1;
    color: var(--glass);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(70,75,113,.18);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}


.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
}

.hero {
    padding: 64px 0 88px;
    position: relative;
    overflow: hidden;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.1rem, 5.4vw, 3.4rem);
    color: var(--navy);
}

.hero h1 em {
    font-style: normal;
    color: var(--glass);
}

.hero-sub {
    margin-top: 20px;
    font-size: 1.12rem;
    color: #4d5273;
    max-width: 520px;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-badges {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.hero-badges li {
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badges li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mist);
    flex: none;
}

.pane-stage {
    position: relative;
    height: 420px;
}

.pane {
    position: absolute;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255,255,255,.55), rgba(124,213,199,.35));
    border: 1px solid rgba(255,255,255,.6);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.pane::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.7) 50%, transparent 60%);
    transform: translateX(-140%);
    animation: sheen 5s ease-in-out infinite;
}

.pane-1 {
    width: 62%;
    height: 88%;
    left: 0;
    top: 6%;
    background: linear-gradient(160deg, rgba(70,75,113,.9), rgba(17,138,178,.85));
}

.pane-1::after {
    animation-delay: .2s;
}

.pane-2 {
    width: 52%;
    height: 70%;
    right: 2%;
    top: 16%;
    background: linear-gradient(160deg, rgba(17,138,178,.55), rgba(124,213,199,.5));
    animation-delay: .3s;
}

.pane-2::after {
    animation-delay: 1s;
}

.pane-3 {
    width: 40%;
    height: 46%;
    right: 10%;
    bottom: 4%;
    background: rgba(255,255,255,.65);
}

.pane-3::after {

    animation-delay: 1.8s;
}

@keyframes sheen {
    0% { transform: translateX(-140%); }
    35% { transform: translateX(160%); }
    100% { transform: translateX(160%); }
}

.trust {
    background: var(--navy);
    color: var(--white);
    padding: 26px 0;
}

.trust ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 40px;
    text-align: center;
}

.trust li {
    font-family: var(--font-mono);
    font-size: .82rem;
    letter-spacing: .03em;
    opacity: .92;
}


.grid-services,
.grid-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-tight);
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(17,138,178,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-card p {
    font-size: .92rem;
    color: #5a5f80;
}

.portfolio-tile {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    background: linear-gradient(150deg, rgba(70,75,113,.18), rgba(124,213,199,.35));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    border: 1.5px dashed rgba(70,75,113,.3);
    position: relative;
    overflow: hidden;
}

.portfolio-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-tile span.tag {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--white);
    font-size: .95rem;
    background: rgba(46,49,83,.6);
    padding: 6px 14px;
    border-radius: 999px;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}

.about-copy h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.about-copy p {
    color: #4d5273;
    margin-bottom: 14px;
}

.contact-panel {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 44px;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-panel h2 {
    font-size: clamp(1.6rem, 3.6vw, 2.1rem);
}

.contact-panel p.lead {
    margin-top: 14px;
    color: rgba(255,255,255,.78);
    max-width: 420px;
}

.contact-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: .95rem;
}

.contact-list .ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.contact-list a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.map-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 280px;
    border: 0;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

.contact-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer {
    padding: 40px 0 120px;
}

.site-footer .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.site-footer p {
    font-size: .85rem;
    color: #5a5f80;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    font-size: .85rem;
    color: #5a5f80;
}

.footer-links a:hover {
    color: var(--glass);
}

.mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--white);
    box-shadow: 0 -12px 30px -20px rgba(46,49,83,.5);
}

.mobile-bar .btn {
    flex: 1;
    min-height: 50px;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .main-nav, .header-call span.label {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .hero .wrap {
        grid-template-columns: 1fr;
    }
    .pane-stage {
        height: 280px;
        order: -1;
    }
    .about-block {
        grid-template-columns: 1fr;
    }
    .contact-panel {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
}

@media (max-width: 640px) {
    section {
        padding: 52px 0;
    }
    .site-footer {
        padding-bottom: 130px;
    }
}

@media (min-width: 981px) {
    .mobile-bar {
        display: none;
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--paper);
    z-index: 49;
    padding: 30px 20px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav a {
    display: block;
    padding: 16px 6px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid rgba(70,75,113,.12);
}

.mobile-nav .header-call {
    margin-top: 24px;
    justify-content: center;
}