:root {
            --bg: #0b1220;
            --panel: #0e172a;
            --muted: #94a3b8;
            --text: #e2e8f0;
            --brand: #7c3aed;
            --brand-2: #22d3ee;
            --card: #0b1220;
            --header-offset: 72px;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        body {
            margin: 0;
            background: linear-gradient(180deg, var(--bg), #0d1426 60%, #0b1220);
            color: var(--text);
            font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto;
            padding-top: var(--header-offset)
        }

        body.no-scroll {
            overflow: hidden
        }

        /* Smooth anchor scrolling and offset for sticky header */
        html {
            scroll-behavior: smooth
        }

        section[id] {
            scroll-margin-top: var(--header-offset)
        }

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

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 24px
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            backdrop-filter: saturate(180%) blur(8px);
            background: rgba(11, 18, 32, .6);
            border-bottom: 1px solid rgba(148, 163, 184, .12);
            z-index: 100
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px
        }

        .logo {
            display: flex;
            gap: 10px;
            align-items: center;
            font-weight: 800;
            letter-spacing: .2px
        }

        .logo-mark {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: conic-gradient(from 210deg at 50% 50%, var(--brand), var(--brand-2), var(--brand));
            box-shadow: 0 0 0 3px rgba(124, 58, 237, .15), 0 6px 24px rgba(34, 211, 238, .2)
        }

        .nav a {
            opacity: .9
        }

        .nav-links {
            display: flex;
            gap: 14px;
            font-weight: 600
        }

        /* Mobile nav toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(148, 163, 184, .3);
            color: #e2e8f0;
            border-radius: 12px;
            padding: 8px 12px;
            font-size: 16px;
        }

        .nav-toggle:focus {
            outline: 2px solid #22d3ee
        }

        .nav-toggle svg {
            width: 22px;
            height: 22px
        }

        .nav-toggle .icon-close {
            display: none
        }

        .nav-toggle[aria-expanded="true"] .icon-burger {
            display: none
        }

        .nav-toggle[aria-expanded="true"] .icon-close {
            display: inline
        }

        .chip {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 999px;
            font-size: 12px;
            background: rgba(34, 211, 238, .12);
            border: 1px solid rgba(34, 211, 238, .35);
            color: #a5f3fc
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, .18);
            background: linear-gradient(180deg, #0f172a, #0b1220);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), 0 10px 30px rgba(124, 58, 237, .15);
            transition: .2s ease
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 14px 36px rgba(34, 211, 238, .18)
        }

        .btn.primary {
            background: linear-gradient(180deg, rgba(124, 58, 237, .95), rgba(124, 58, 237, .85));
            border-color: rgba(124, 58, 237, .8);
            color: white
        }

        /* CTA layout in hero */
        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px
        }

        .actions .btn {
            min-height: 44px
        }

        .hero {
            padding: 72px 24px 48px;
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 32px;
            align-items: center
        }

        .hero h1 {
            font-weight: 800;
            line-height: 1.05;
            font-size: clamp(32px, 4.2vw, 54px);
            margin: 0
        }

        .hero p {
            color: var(--muted);
            font-size: clamp(16px, 1.6vw, 18px)
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px
        }

        .tag {
            font-size: 12px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(148, 163, 184, .12);
            border: 1px solid rgba(148, 163, 184, .2);
            color: #cbd5e1
        }

        section {
            padding: 56px 24px
        }

        h2 {
            font-size: clamp(22px, 2.6vw, 32px)
        }

        .pill {
            padding: 6px 10px;
            border: 1px solid rgba(148, 163, 184, .18);
            border-radius: 999px;
            color: #cbd5e1;
            background: rgba(148, 163, 184, .08);
            font-size: 12px
        }

        .list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            color: #cbd5e1
        }

        .muted {
            color: #94a3b8
        }

        footer {
            margin-top: 60px;
            padding: 24px 0;
            background: #0b1220;
            color: #94a3b8;
            border-top: 1px solid rgba(148, 163, 184, .12);
            text-align: center;
        }

        @media (max-width: 900px) {
            :root {
                --header-offset: 60px
            }

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

            .nav {
                padding: 10px 16px
            }

            .logo-mark {
                width: 24px;
                height: 24px
            }

            header .btn {
                display: none
            }

            .nav-links {
                display: none
            }

            .nav-toggle {
                display: inline-flex;
                align-items: center;
                gap: 8px
            }

        }

        /* Inputs & Textareas */
        input,
        textarea {
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.22);
            background: #0b1220;
            color: #e2e8f0;
            padding: 12px 14px;
            width: 100%;
            transition: border-color 0.2s ease;
        }

        input:focus,
        textarea:focus {
            border-color: #22d3ee;
            outline: none;
        }

        /* Optional: Leichter Glow beim Hover über den Absenden-Button */
        form .btn.primary:hover {
            box-shadow: 0 0 14px rgba(34, 211, 238, 0.6);
        }

        /* Mobile menu panel */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--header-offset);
            left: 0;
            right: 0;
            background: rgba(11, 18, 32, .98);
            border-top: 1px solid rgba(148, 163, 184, .12);
            z-index: 60;
            padding: 16px 24px;
            box-shadow: 0 16px 36px rgba(0, 0, 0, .45);
        }

        .mobile-nav a {
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(148, 163, 184, .08)
        }

        .mobile-nav a:last-child {
            border-bottom: 0
        }

        @media (max-width: 900px) {
            .mobile-nav.open {
                display: block
            }
        }

        header.scrolled {
            box-shadow: 0 8px 20px rgba(0, 0, 0, .25)
        }

        /* Backdrop hinter mobilem Menü */
        .backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(2, 6, 23, .6);
            backdrop-filter: blur(2px);
            z-index: 50
        }

        @media (max-width: 900px) {
            .backdrop.open {
                display: block
            }
        }

/* Shared layout additions */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

/* Open-source projects */
.section-heading {
    max-width: 720px;
    margin-bottom: 24px;
}

.section-heading h2 {
    margin: 8px 0 10px;
}

.section-heading p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a5f3fc;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 1px;
    background: var(--brand-2);
    content: "";
}

.project-list {
    display: grid;
    gap: 28px;
}

.project-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(250px, .7fr);
    gap: 28px;
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(34, 211, 238, .22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 85% 20%, rgba(34, 211, 238, .12), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(124, 58, 237, .16), transparent 34%),
        rgba(14, 23, 42, .72);
    box-shadow: 0 24px 80px rgba(2, 6, 23, .36);
}

.project-card.is-serverops {
    border-color: rgba(74, 222, 128, .2);
    background:
        radial-gradient(circle at 85% 20%, rgba(74, 222, 128, .1), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(34, 211, 238, .12), transparent 34%),
        rgba(14, 23, 42, .72);
}

.project-copy h3 {
    max-width: 620px;
    margin: 18px 0 12px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.project-copy > p {
    max-width: 680px;
    color: #cbd5e1;
    line-height: 1.75;
}

.project-badges,
.project-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.project-badges {
    margin: 0;
    padding: 0;
    list-style: none;
}

.status-badge {
    padding: 6px 10px;
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 999px;
    background: rgba(15, 23, 42, .82);
    color: #cbd5e1;
    font-size: .75rem;
    font-weight: 700;
}

.status-badge.is-open-source {
    border-color: rgba(74, 222, 128, .28);
    background: rgba(74, 222, 128, .1);
    color: #bbf7d0;
}

.project-highlights {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dbeafe;
}

.project-highlights i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(124, 58, 237, .28);
    border-radius: 10px;
    background: rgba(124, 58, 237, .12);
    color: #c4b5fd;
}

.text-link {
    color: #a5f3fc;
    font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
}

.project-architecture {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 20px;
    background: rgba(2, 6, 23, .46);
}

.architecture-label {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    text-transform: uppercase;
}

.architecture-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 13px;
    background: rgba(15, 23, 42, .92);
    font-weight: 800;
}

.architecture-step i,
.architecture-arrow {
    color: var(--brand-2);
}

.architecture-step.is-krita {
    border-color: rgba(124, 58, 237, .38);
    background: rgba(124, 58, 237, .13);
}

.architecture-step.is-server {
    border-color: rgba(74, 222, 128, .34);
    background: rgba(74, 222, 128, .1);
}

.architecture-step.is-server i {
    color: #86efac;
}

.architecture-arrow {
    align-self: center;
    margin: 9px 0;
    font-size: .8rem;
}

.project-architecture p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
    text-align: center;
}

/* Contact */
.contact-section {
    padding-top: 72px;
}

.contact-heading {
    max-width: 680px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.contact-intro {
    padding-top: 8px;
}

.contact-intro h3 {
    margin: 0 0 22px;
    font-size: 1.35rem;
}

.contact-steps {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-steps li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
}

.contact-steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(34, 211, 238, .22);
    border-radius: 12px;
    background: rgba(34, 211, 238, .08);
    color: #a5f3fc;
    font-size: .72rem;
    font-weight: 800;
}

.contact-steps b {
    display: block;
    margin-top: 1px;
}

.contact-steps p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.55;
}

.direct-contact {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, .14);
}

.direct-contact > p:first-child {
    margin: 0 0 7px;
    font-size: .82rem;
}

.direct-contact > a {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}

.copy-email {
    display: block;
    margin: 12px 0 0;
    padding: 0;
    border: 0;
    background: none;
    color: #a5f3fc;
    cursor: pointer;
    font: inherit;
    font-size: .82rem;
    font-weight: 700;
}

.copy-status {
    min-height: 1.2em;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: .78rem;
}

.contact-socials {
    display: flex;
    gap: 18px;
    margin-top: 16px;
    color: #cbd5e1;
    font-size: .88rem;
    font-weight: 700;
}

.contact-form-card {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 22px;
    background: rgba(14, 23, 42, .72);
    box-shadow: 0 22px 60px rgba(2, 6, 23, .3);
}

.contact-form {
    display: grid;
    gap: 18px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label > span {
    color: #dbeafe;
    font-size: .84rem;
    font-weight: 700;
}

.contact-form small {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 12px;
    outline: 0;
    background: rgba(2, 6, 23, .54);
    color: var(--text);
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form select {
    color-scheme: dark;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(34, 211, 238, .72);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, .1);
}

.contact-form textarea {
    resize: vertical;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.submit-button {
    justify-content: center;
    min-height: 48px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.form-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.5;
}

.form-note a {
    color: #a5f3fc;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .project-card,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .project-architecture {
        min-height: auto;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    section,
    .contact-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .project-card {
        padding: 20px;
        border-radius: 18px;
    }

    .project-actions {
        align-items: stretch;
    }

    .project-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .project-actions .text-link {
        padding: 8px 0;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Site-wide visual refresh */
:root {
    --surface: rgba(14, 23, 42, .72);
    --surface-strong: rgba(15, 23, 42, .94);
    --border: rgba(148, 163, 184, .15);
    --border-bright: rgba(34, 211, 238, .24);
    --brand-soft: rgba(124, 58, 237, .12);
    --cyan-soft: rgba(34, 211, 238, .1);
}

body {
    min-width: 320px;
    background:
        radial-gradient(circle at 18% 8%, rgba(124, 58, 237, .12), transparent 25rem),
        radial-gradient(circle at 88% 24%, rgba(34, 211, 238, .08), transparent 26rem),
        linear-gradient(180deg, #08101e, var(--bg) 42%, #09111f);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main {
    overflow: clip;
}

::selection {
    background: rgba(124, 58, 237, .48);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--brand-2);
    outline-offset: 3px;
}

.site-header {
    background: rgba(8, 16, 30, .76);
    border-color: rgba(148, 163, 184, .1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .02);
}

.site-header.scrolled {
    background: rgba(8, 16, 30, .92);
    box-shadow: 0 14px 38px rgba(2, 6, 23, .34);
}

.nav-links a,
.footer-links a {
    position: relative;
    transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #fff;
    opacity: 1;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    content: "";
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.gradient-text {
    background: linear-gradient(100deg, #a78bfa 5%, #22d3ee 72%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero {
    min-height: 690px;
    padding-top: clamp(82px, 10vw, 126px);
    padding-bottom: clamp(72px, 9vw, 112px);
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
    gap: clamp(38px, 7vw, 82px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 720px;
    margin-top: 18px;
    font-size: clamp(2.75rem, 5.7vw, 4.7rem);
    letter-spacing: -.055em;
    line-height: .98;
}

.hero-line-muted {
    display: block;
    margin-top: 8px;
    color: #f8fafc;
}

.hero .hero-lead {
    max-width: 680px;
    margin: 25px 0 0;
    color: #aebdd0;
    font-size: clamp(1rem, 1.55vw, 1.13rem);
    line-height: 1.75;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 22px;
    color: #cbd5e1;
    font-size: .8rem;
    font-weight: 700;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-proof i:not(.status-dot) {
    color: var(--brand-2);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, .1), 0 0 18px rgba(74, 222, 128, .45);
}

.hero .tags {
    margin-top: 24px;
}

.hero .tag {
    padding: 7px 11px;
    background: rgba(15, 23, 42, .72);
    border-color: var(--border);
    color: #b8c5d6;
}

.hero-actions {
    margin-top: 28px;
}

.hero-panel {
    position: relative;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--border-bright);
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 5%, rgba(34, 211, 238, .14), transparent 14rem),
        radial-gradient(circle at 5% 100%, rgba(124, 58, 237, .16), transparent 16rem),
        rgba(10, 18, 33, .82);
    box-shadow: 0 34px 90px rgba(2, 6, 23, .48), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.hero-panel::before {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124, 58, 237, .18), transparent 38%, rgba(34, 211, 238, .12));
    content: "";
    filter: blur(18px);
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 2px 2px 20px;
    border-bottom: 1px solid var(--border);
}

.hero-panel-head div {
    display: grid;
    gap: 5px;
}

.hero-panel-head span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-panel-head b {
    font-size: 1.05rem;
}

.hero-panel-head > i,
.code-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(34, 211, 238, .24);
    border-radius: 14px;
    background: var(--cyan-soft);
    color: #67e8f9;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .75rem;
    font-weight: 800;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.outcome-grid article {
    min-height: 166px;
    padding: 17px;
    border: 1px solid rgba(148, 163, 184, .11);
    border-radius: 16px;
    background: rgba(15, 23, 42, .6);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.outcome-grid article:hover {
    border-color: rgba(34, 211, 238, .25);
    background: rgba(15, 23, 42, .86);
    transform: translateY(-2px);
}

.outcome-grid article > i,
.outcome-mark {
    color: #a78bfa;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.outcome-grid h2 {
    margin: 14px 0 7px;
    font-size: .95rem;
    line-height: 1.3;
}

.hero .outcome-grid p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}

.hero-panel-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 13px;
    border: 1px solid rgba(148, 163, 184, .11);
    border-radius: 13px;
    color: #cbd5e1;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-panel-foot i {
    color: #475569;
    font-size: .65rem;
}

.services-overview,
.audience-section,
.reviews-section,
.project-section,
.contact-section {
    padding-top: clamp(72px, 9vw, 112px);
    padding-bottom: clamp(72px, 9vw, 112px);
}

.services-overview {
    position: relative;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.service-card::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(124, 58, 237, .08);
    content: "";
    filter: blur(8px);
}

.service-card:nth-child(2)::after {
    background: rgba(34, 211, 238, .08);
}

.service-card:hover {
    border-color: rgba(34, 211, 238, .25);
    box-shadow: 0 26px 60px rgba(2, 6, 23, .28);
    transform: translateY(-4px);
}

.service-icon,
.audience-icon,
.content-card-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(124, 58, 237, .25);
    border-radius: 14px;
    background: var(--brand-soft);
    color: #c4b5fd;
}

.service-icon span,
.audience-icon span,
.content-card-icon span {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
}

.service-number {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #334155;
    font-size: 1.4rem;
    font-weight: 800;
}

.service-card .pill {
    align-self: flex-start;
    margin-top: 22px;
}

.service-card h3 {
    margin: 18px 0 10px;
    font-size: 1.22rem;
}

.service-card > p {
    min-height: 72px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
}

.service-card .list {
    position: relative;
    z-index: 1;
    margin: auto 0 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(148, 163, 184, .11);
    color: #cbd5e1;
    font-size: .84rem;
    line-height: 1.5;
    list-style: none;
}

.service-card .list li {
    position: relative;
    padding-left: 17px;
}

.service-card .list li::before {
    position: absolute;
    top: .65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-2);
    content: "";
}

.audience-section {
    position: relative;
}

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

.audience-card {
    position: relative;
    padding: clamp(26px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(14, 23, 42, .62);
    box-shadow: 0 24px 70px rgba(2, 6, 23, .22);
}

.audience-card.is-support {
    background: radial-gradient(circle at 0 0, rgba(124, 58, 237, .15), transparent 20rem), rgba(14, 23, 42, .62);
}

.audience-card.is-business {
    background: radial-gradient(circle at 100% 0, rgba(34, 211, 238, .13), transparent 20rem), rgba(14, 23, 42, .62);
}

.audience-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.audience-card.is-business .audience-icon {
    border-color: rgba(34, 211, 238, .25);
    background: var(--cyan-soft);
    color: #67e8f9;
}

.audience-card h3 {
    margin: 25px 0 12px;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.audience-card > p {
    min-height: 76px;
    margin: 0;
    color: #aebdd0;
    line-height: 1.7;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 0;
    color: #cbd5e1;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    line-height: 1.55;
}

.check-list li::before {
    position: absolute;
    top: .12em;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: rgba(74, 222, 128, .1);
    color: #86efac;
    content: "✓";
    font-size: .66rem;
    font-weight: 900;
}

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

.review-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    margin: 0;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #475569;
}

.review-stars {
    color: #fbbf24;
    font-size: .83rem;
    letter-spacing: .12em;
}

.review-card blockquote {
    margin: 24px 0 28px;
    color: #dbeafe;
    font-size: 1rem;
    line-height: 1.75;
}

.review-card figcaption {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.review-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(124, 58, 237, .28);
    border-radius: 12px;
    background: var(--brand-soft);
    color: #c4b5fd;
    font-weight: 800;
}

.review-card figcaption > span:nth-child(2) {
    display: grid;
    gap: 3px;
    color: #e2e8f0;
}

.review-card figcaption small {
    color: var(--muted);
    font-size: .72rem;
}

.review-card figcaption a {
    color: #a5f3fc;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}

/* Shared content pages */
.content-page,
.document-page,
.success-page {
    min-height: calc(100vh - var(--header-offset));
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(34px, 7vw, 76px);
    align-items: center;
    padding-top: clamp(84px, 10vw, 126px);
    padding-bottom: 62px;
}

.page-hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(2.7rem, 5.5vw, 4.6rem);
    letter-spacing: -.05em;
    line-height: 1;
}

.page-hero .lead {
    max-width: 720px;
    font-size: 1.05rem;
}

.page-actions {
    margin-top: 28px;
}

.profile-card {
    position: relative;
    margin: 0;
    padding: 12px;
    overflow: hidden;
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    background: rgba(14, 23, 42, .72);
    box-shadow: 0 30px 80px rgba(2, 6, 23, .38);
}

.profile-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 17px;
}

.profile-card figcaption {
    display: grid;
    gap: 4px;
    padding: 16px 8px 7px;
}

.profile-card figcaption span {
    color: var(--muted);
    font-size: .78rem;
}

.local-summary {
    padding: clamp(25px, 4vw, 36px);
    border: 1px solid var(--border-bright);
    border-radius: 24px;
    background: radial-gradient(circle at 100% 0, rgba(34, 211, 238, .14), transparent 17rem), var(--surface);
    box-shadow: 0 28px 70px rgba(2, 6, 23, .3);
}

.local-summary > i,
.local-mark {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(34, 211, 238, .25);
    border-radius: 14px;
    background: var(--cyan-soft);
    color: #67e8f9;
    font-size: .78rem;
    font-weight: 900;
}

.local-summary > span {
    display: block;
    margin-top: 30px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.local-summary h2 {
    margin: 10px 0 24px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.content-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-top: 16px;
    padding-bottom: clamp(76px, 10vw, 120px);
}

.content-card {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.content-card.is-wide {
    grid-column: 1 / -1;
}

.content-card h2 {
    margin: 22px 0 12px;
}

.content-card .lead {
    margin-bottom: 0;
    font-size: .95rem;
}

.content-card .check-list {
    margin-bottom: 0;
}

.content-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.location-tags span {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(15, 23, 42, .72);
    color: #cbd5e1;
    font-size: .72rem;
    font-weight: 700;
}

.document-page {
    padding: clamp(70px, 9vw, 110px) 24px;
}

.document-card {
    max-width: 820px;
    padding: clamp(28px, 5vw, 52px);
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 26px 80px rgba(2, 6, 23, .28);
}

.document-card h1 {
    margin: 18px 0 30px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -.04em;
}

.document-card h2 {
    margin-top: 34px;
    font-size: 1.2rem;
}

.document-card p {
    color: #b7c4d4;
    line-height: 1.75;
}

.document-card a {
    color: #a5f3fc;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.success-page {
    display: grid;
    place-items: center;
    padding: 70px 24px;
}

.success-card {
    max-width: 620px;
    padding: clamp(36px, 7vw, 64px);
    border: 1px solid var(--border-bright);
    border-radius: 26px;
    background: var(--surface);
    text-align: center;
    box-shadow: 0 30px 90px rgba(2, 6, 23, .4);
}

.success-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    margin: 0 auto 28px;
    border: 1px solid rgba(74, 222, 128, .28);
    border-radius: 18px;
    background: rgba(74, 222, 128, .1);
    color: #86efac;
    font-size: 1.4rem;
}

.success-card .eyebrow {
    justify-content: center;
}

.success-card h1 {
    margin: 15px 0 12px;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.success-card > p:not(:last-child) {
    color: var(--muted);
    line-height: 1.7;
}

/* Footer */
.site-footer {
    margin-top: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    background: rgba(5, 11, 22, .78);
    text-align: left;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    padding-top: 54px;
    padding-bottom: 46px;
}

.footer-brand p {
    max-width: 390px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.65;
}

.footer-contact {
    display: grid;
    gap: 9px;
}

.footer-contact > span {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-contact a {
    color: #fff;
    font-weight: 800;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 23, 42, .64);
    color: #cbd5e1;
    font-size: .78rem;
    font-weight: 700;
    transition: border-color .18s ease, color .18s ease, transform .18s ease;
}

.footer-socials a:hover {
    border-color: var(--border-bright);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(148, 163, 184, .09);
    font-size: .75rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 780px;
    }

    .hero-panel {
        max-width: 780px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card > p {
        min-height: auto;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-socials {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .hero {
        padding-top: 72px;
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 13vw, 4rem);
    }

    .hero-proof {
        display: grid;
    }

    .outcome-grid,
    .audience-grid,
    .reviews-grid,
    .page-hero,
    .content-card-grid,
    .content-columns {
        grid-template-columns: 1fr;
    }

    .audience-card > p {
        min-height: auto;
    }

    .review-card {
        min-height: auto;
    }

    .content-card.is-wide {
        grid-column: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-socials {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .hero-panel,
    .audience-card,
    .service-card,
    .review-card,
    .content-card,
    .local-summary,
    .document-card {
        border-radius: 18px;
    }

    .outcome-grid {
        gap: 9px;
    }

    .outcome-grid article {
        min-height: 150px;
        padding: 14px;
    }

    .hero-panel-foot {
        gap: 7px;
        font-size: .64rem;
    }

    .review-card figcaption {
        grid-template-columns: 40px 1fr;
    }

    .review-card figcaption a {
        grid-column: 2;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}
