@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #f4f8fc;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-dark: #091325;
    --text: #11213d;
    --text-muted: #52627f;
    --line: rgba(17, 33, 61, 0.12);
    --brand: #0f74d7;
    --brand-strong: #0b4f9d;
    --brand-deep: #0c1831;
    --accent: #2ca9ff;
    --glow: rgba(44, 169, 255, 0.2);
    --shadow: 0 24px 70px rgba(8, 24, 52, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(44, 169, 255, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 116, 215, 0.15), transparent 32%),
        linear-gradient(180deg, #eef5fb 0%, #f8fbff 36%, #f2f7fc 100%);
}

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

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

.page-shell {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #ffffff;
    border-bottom: 1px solid rgba(12, 24, 49, 0.08);
    box-shadow: 0 10px 24px rgba(12, 24, 49, 0.05);
}

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

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

.hero-copy h1,
.section-heading h2,
.methodology-copy h2,
.company-copy h2,
.company-panel h3,
.stat-card h2,
.service-card h3,
.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.brand-wordmark {
    width: 250px;
    height: auto;
    flex: 0 1 auto;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    font-size: 0.96rem;
    color: var(--text-muted);
}

.site-nav a {
    transition: color 180ms ease;
}

    .site-nav a:hover,
    .site-nav a:focus-visible {
    color: var(--brand-strong);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

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

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 16px 34px rgba(15, 116, 215, 0.28);
}

.button-secondary {
    color: var(--brand-deep);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(12, 24, 49, 0.08);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 54px 0 44px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 38px auto auto 50%;
    width: min(920px, 84vw);
    height: min(920px, 84vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 169, 255, 0.12), transparent 68%);
    transform: translateX(-6%);
    filter: blur(6px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: block;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 44px 0;
}

.process-showcase {
    padding: 6px 0 30px;
}

.process-panel {
    display: grid;
    gap: 24px;
    padding: 26px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.process-copy {
    max-width: 820px;
}

.process-copy h2 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.process-copy p {
    margin: 18px 0 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.process-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 49, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--brand-strong);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 44px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand), transparent);
}

.hero-copy h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.9rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.methodology-copy p,
.company-copy p,
.contact-card p,
.service-card p,
.stat-card p,
.principle-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-text {
    max-width: 61ch;
    margin: 22px 0 0;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-note span {
    padding: 10px 14px;
    border: 1px solid rgba(12, 24, 49, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

.stats-section {
    padding: 10px 0 26px;
}

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

.stat-card,
.service-card,
.contact-card,
.company-panel,
.capability-item {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.stat-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    letter-spacing: -0.04em;
}

.stat-card p {
    margin: 0;
    max-width: 28ch;
}

.section-block {
    padding: 76px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.methodology-copy h2,
.company-copy h2 {
    margin: 0;
    font-size: clamp(2.05rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-heading p,
.methodology-copy p,
.company-copy p {
    margin: 18px 0 0;
}

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

.service-card,
.contact-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), rgba(44, 169, 255, 0.2));
}

.service-card h3,
.contact-card h3,
.company-panel h3 {
    margin: 0 0 12px;
    font-size: 1.34rem;
    letter-spacing: -0.03em;
}

.service-card p,
.contact-card p {
    margin: 0;
}

.contact-link {
    color: var(--brand-strong);
    font-weight: 800;
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--brand);
    text-decoration: underline;
}

.section-dark {
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(44, 169, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #081325 0%, #0d1d39 48%, #0f2b55 100%);
}

.section-dark .eyebrow,
.section-dark h2 {
    color: #ffffff;
}

.section-dark .eyebrow::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent);
}

.section-dark .methodology-copy p,
.section-dark .principle-item p {
    color: rgba(255, 255, 255, 0.72);
}

.methodology-grid,
.company-grid,
.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.principles-list {
    display: grid;
    gap: 18px;
}

.principle-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.principle-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    border-radius: 18px;
    background: rgba(44, 169, 255, 0.18);
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
}

.principle-item p {
    margin: 0;
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.capability-item {
    padding: 22px 20px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--brand-deep);
}

.company-section {
    padding-top: 38px;
}

.company-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.company-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: auto auto 20px 50%;
    width: min(860px, 90vw);
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 169, 255, 0.18), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

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

.site-footer {
    padding: 26px 0 34px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.94rem;
}

@media (max-width: 1080px) {
    .site-nav,
    .header-cta {
        display: none;
    }

    .hero-grid,
    .methodology-grid,
    .company-grid,
    .capability-grid,
    .stats-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .capability-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 74px;
    }

    .brand-wordmark {
        width: 180px;
        height: auto;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-copy {
        padding-top: 12px;
    }

    .hero-copy h1 {
        max-width: 11ch;
    }

    .service-card,
    .contact-card,
    .stat-card,
    .company-panel,
    .capability-item,
    .principle-item {
        padding: 22px;
    }

    .section-block {
        padding: 58px 0;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
