:root {
    --bg: #f4f0e8;
    --ink: #17211c;
    --muted: #5c675f;
    --line: rgba(23, 33, 28, 0.12);
    --card: #fffdf8;
    --green: #146b4a;
    --green-deep: #10241c;
    --lime: #d7f25a;
    --coral: #c4491d;
    --shadow: 0 16px 40px rgba(23, 33, 28, 0.08);
    --header: 4.5rem;
    --max: 1120px;
    --font: "Outfit", "Segoe UI", sans-serif;
    --serif: "Literata", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font);
    font-size: 1.05rem;
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; }

a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, .brand strong {
    font-family: var(--serif);
    font-weight: 680;
    letter-spacing: -0.03em;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--lime);
    color: var(--green-deep);
    padding: 0.6rem 0.9rem;
    z-index: 20;
}

.skip-link:focus { top: 1rem; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.wrap {
    width: min(var(--max), calc(100% - 1.5rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
    padding: 14px 20px;
    background: #f4f0e8;
}

.qz-nav {
    position: relative;
    width: min(1040px, 100%);
    height: 52px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 0 10px 0 16px;
    background: #000;
    border-radius: 26px;
    font-family: Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    z-index: 20;
}

.qz-wordmark {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: auto;
    color: #fff;
    text-decoration: none;
    font-size: 17.1px;
    font-weight: 783;
    letter-spacing: -0.0075em;
    line-height: 1;
    white-space: nowrap;
}

.qz-logo {
    width: 26px;
    height: 25px;
    min-width: 26px;
    max-width: 26px;
    flex: 0 0 26px;
}

.qz-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.008em;
    line-height: 1;
    white-space: nowrap;
}

.qz-link[aria-current="page"] { color: #38c6ec; }

.qz-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 16px;
    border-radius: 17px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 577;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 34px;
    height: 34px;
    padding: 0 7px;
    background: none;
    border: 0;
    border-radius: 17px;
    cursor: pointer;
}

.burger__bar {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 1px;
    transition: transform .22s ease, opacity .22s ease;
}

.burger:focus-visible { outline: 2px solid #38c6ec; outline-offset: 2px; }
.qz-nav.is-open .burger__bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.qz-nav.is-open .burger__bar:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.navmenu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 70;
}

.navmenu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    margin: 0;
    padding: calc(76px + env(safe-area-inset-top)) 16px calc(18px + env(safe-area-inset-bottom));
    background: #000;
    z-index: 80;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

body.nav-open .navmenu {
    display: flex;
}

body.nav-open .navmenu-backdrop {
    display: block;
}

body.nav-open .site-header {
    z-index: 90;
}

.navmenu__link,
.navmenu__cta {
    font-size: 15px;
    letter-spacing: -0.008em;
    line-height: 1;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 12px;
}

.navmenu__link { color: #fff; font-weight: 500; }
.navmenu__link[aria-current="page"] { color: #38c6ec; }
.navmenu__link:hover,
.navmenu__link:focus { background: rgba(255, 255, 255, 0.1); }
.navmenu__cta {
    margin-top: 6px;
    background: #fff;
    color: #000;
    font-weight: 577;
    letter-spacing: -0.02em;
    text-align: center;
    border-radius: 17px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    display: grid;
    place-items: center;
    border-radius: 0.55rem;
    background: var(--green-deep);
    color: var(--lime);
    font-family: var(--serif);
    font-size: 0.85rem;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.05rem; }
.brand-text small { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; }

@media (max-width: 860px) {
    .site-header {
        padding: 10px 12px;
        padding-top: max(10px, env(safe-area-inset-top));
    }
    .qz-nav {
        height: 48px;
        gap: 12px;
        padding: 0 8px 0 14px;
    }
    .qz-link,
    .qz-cta { display: none; }
    .burger {
        display: flex;
        position: relative;
        z-index: 70;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }
    .navmenu__link,
    .navmenu__cta {
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 17px;
    }
    .navmenu__cta { justify-content: center; }
}

@media (min-width: 861px) {
    .navmenu,
    .navmenu-backdrop { display: none !important; }
    body.nav-open .navmenu,
    body.nav-open .navmenu-backdrop { display: none !important; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary { background: var(--green); color: #f7fff8; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.hero, .page-hero, .section { padding: 2.5rem 0; }

.hero-grid, .split, .contact-grid, .leader-grid, .package-grid, .service-grid, .footer-grid {
    display: grid;
    gap: 1.25rem;
}

.eyebrow, .code, .panel-label {
    margin: 0 0 0.7rem;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.1rem, 6vw, 4.2rem); line-height: 1.05; margin-bottom: 0.8rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }

.lede, .muted { color: var(--muted); font-size: 1.05rem; }

.hero-actions, .link-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }

.hero-panel, .card, .package, .leader, .form-card, .notice {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    box-shadow: var(--shadow);
}

.hero-panel, .card, .package, .leader, .form-card { padding: 1.15rem 1.15rem 1.2rem; }

.fee-list, .plain-list { list-style: none; margin: 0; padding: 0; }
.fee-list li, .check-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
}

.fee-list a { text-decoration: none; }
.fee-list strong { font-variant-numeric: tabular-nums; white-space: nowrap; }
.panel-note { color: var(--muted); font-size: 0.92rem; margin: 0.9rem 0 0; }

.section-head { max-width: 40rem; margin-bottom: 1.4rem; }

.service-card .price, .package .price {
    margin: 0.8rem 0 0;
    color: var(--green-deep);
    font-weight: 600;
}

.service-card a.title { color: inherit; text-decoration: none; }
.text-link { color: var(--green); font-weight: 600; }

.band {
    background: var(--green-deep);
    color: #edf6f0;
    padding: 2.4rem 0;
}

.band .muted { color: #c5d5cc; }
.steps { display: grid; gap: 1rem; }
.step strong { display: block; font-family: var(--serif); font-size: 1.2rem; }

.leader span { display: block; color: var(--muted); }

.legal { padding-bottom: 3rem; }
.legal-body { max-width: 46rem; }
.legal-body h2 { font-size: 1.45rem; margin-top: 1.8rem; }
.legal-body ul { padding-left: 1.15rem; }
.legal-meta { color: var(--muted); }

.form-card { display: grid; gap: 0.85rem; }
label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.92rem; }
input, select, textarea {
    width: 100%;
    min-height: 2.9rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 1rem;
}
textarea { min-height: 8rem; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.errors { background: #fff1ea; border: 1px solid #f0c2b0; color: #7a2e12; border-radius: 0.8rem; padding: 0.8rem 1rem; }
.success { background: #eef8e8; border: 1px solid #c9e3bc; border-radius: 0.8rem; padding: 0.8rem 1rem; }
.check-list { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.check-list li { display: block; padding: 0.35rem 0; border: 0; }
.check-list li::before { content: "· "; color: var(--green); }

.site-footer {
    background: #0a0a0f;
    color: #f0f0f5;
    padding: 14px 14px 28px;
    font-family: Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.footer-shell {
    width: min(1600px, 100%);
    margin: 0 auto;
    padding: 28px 28px 22px;
    background: #000;
    border-radius: 26px;
}

.footer-bar {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 52px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-right: auto;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.008em;
    white-space: nowrap;
}

.footer-nav a:hover { color: #38c6ec; }

.site-footer h2 {
    font-family: Figtree, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #c8a0e0;
}

.site-footer a { color: #f0f0f5; }
.site-footer .qz-cta { color: #000; background: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.4rem 0; }
.site-footer li a { text-decoration: none; color: rgba(255, 255, 255, 0.72); }
.site-footer li a:hover { color: #fff; }
.footer-bottom {
    display: grid;
    gap: 16px;
    margin-top: 1.8rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.footer-copy { margin: 0; }

.footer-meta {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.footer-meta li {
    display: grid;
    gap: 4px;
    margin: 0;
    min-width: 0;
}

.footer-meta span {
    color: #c8a0e0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-meta p,
.footer-meta a {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-meta a { color: #38c6ec; text-decoration: none; }
.footer-meta a:hover { color: #fff; }

@media (min-width: 800px) {
    .footer-meta {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.45fr) minmax(0, 0.9fr);
        gap: 28px;
    }
}
.footer-policies { display: flex; flex-wrap: wrap; gap: 0.25rem 0.15rem; }
.footer-policies a { color: #38c6ec; }

.footer-brand p { color: rgba(255, 255, 255, 0.55); }

@media (max-width: 760px) {
    .footer-bar { flex-wrap: wrap; }
    .footer-nav { width: 100%; }
    .footer-bar .qz-cta { margin-left: auto; }
}

.empty { padding: 3rem 0 4rem; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

@media (min-width: 700px) {
    .wrap { width: min(var(--max), calc(100% - 2.5rem)); }
    .service-grid, .package-grid, .leader-grid, .steps { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
}

@media (min-width: 900px) {
    .hero-grid, .split { grid-template-columns: 1.3fr 0.9fr; align-items: end; gap: 2rem; }
    .hero, .page-hero, .section { padding: 4.2rem 0; }
    .footer-grid { grid-template-columns: 1.4fr 0.8fr 0.9fr; gap: 2rem; }
    .service-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.home-hero {
    background: #0a0a0f;
    padding: 14px 14px 28px;
    font-family: Inter, sans-serif;
}

.hero-card {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    position: relative;
    background: #0d0b12;
    padding: 80px 40px 70px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #f0f0f5;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% -70%,
            transparent 60%,
            rgba(176, 48, 136, 0.03) 63%,
            rgba(176, 48, 136, 0.08) 65%,
            rgba(176, 48, 136, 0.16) 67%,
            rgba(176, 48, 136, 0.28) 69%,
            rgba(176, 48, 136, 0.40) 71%,
            rgba(176, 48, 136, 0.52) 73%,
            rgba(176, 48, 136, 0.64) 75%,
            rgba(176, 48, 136, 0.74) 77%,
            rgba(176, 48, 136, 0.82) 79%,
            rgba(210, 70, 175, 0.92) 85%,
            rgba(240, 110, 210, 0.88) 87%,
            rgba(255, 205, 250, 0.92) 91%,
            rgba(255, 240, 255, 0.98) 93%,
            #ffffff 95%),
        radial-gradient(circle at 50% 35%, rgba(120, 40, 180, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-card .hero-grid {
    position: absolute;
    inset: 0;
    display: block;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% -70%, transparent 60%, black 78%);
    z-index: 0;
    pointer-events: none;
}

.icon-pipeline {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: min(700px, 100%);
    width: 100%;
    margin-bottom: 52px;
    padding: 10px 2px;
    z-index: 1;
}

.beam-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 2;
    pointer-events: none;
}

.icon-node {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #1a1a24;
    cursor: pointer;
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    flex: none;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.4),
        -4px -4px 10px rgba(255, 255, 255, 0.03),
        inset 1px 1px 1px rgba(255, 255, 255, 0.05),
        inset 4px 4px 8px rgba(0, 0, 0, 0.4);
}

.icon-node::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px dotted #1a1a24;
    border-radius: 50%;
}

.icon-node svg { width: 20px; height: 20px; stroke: rgba(255, 255, 255, 0.7); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.node-light-right::before,
.node-light-left::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 300ms;
    z-index: 4;
    pointer-events: none;
}

.node-light-right::before { background: radial-gradient(circle at right, rgba(200, 200, 200, 0.45) 0%, transparent 70%); }
.node-light-left::before { background: radial-gradient(circle at left, rgba(200, 100, 255, 0.5) 0%, transparent 70%); }
.icon-node.active::before { opacity: 1; }

.pipeline-line {
    flex: 1 1 1.25rem;
    width: auto;
    min-width: 0.5rem;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
}

.pipeline-line.right { background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.15)); }

.pipeline-center { position: relative; z-index: 3; }

.splash {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 200, 0.6) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.4);
    z-index: 2;
    pointer-events: none;
}

.splash.animate { animation: splash-anim 0.8s ease-out forwards; }

@keyframes splash-anim {
    0% { transform: scale(0.4); opacity: 0.8; }
    40% { opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.icon-node-center {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #1e1e2c;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 3;
    box-shadow:
        8px 8px 16px rgba(0, 0, 0, 0.5),
        -6px -6px 14px rgba(255, 255, 255, 0.04),
        inset 1px 1px 2px rgba(255, 255, 255, 0.06),
        inset 6px 6px 12px rgba(0, 0, 0, 0.5);
}

.icon-node-center .qz-logo {
    width: 30px;
    height: 29px;
    min-width: 30px;
    max-width: 30px;
    flex: none;
}

.hero-content {
    width: 100%;
    max-width: 760px;
    min-width: 0;
    z-index: 1;
    padding-inline: 8px;
}

.hero-heading {
    font-family: Inter, sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f0f0f5;
    margin: 0 0 0.85rem;
    text-wrap: balance;
}

.hero-heading strong {
    font-weight: 400;
    margin-top: 4px;
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.hero-heading strong .type-live {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

.type-line {
    display: block;
    position: relative;
}

.type-ghost {
    visibility: hidden;
}

.type-live {
    position: absolute;
    inset: 0;
}

.type-caret {
    display: inline-block;
    width: 2px;
    height: 0.82em;
    margin-left: 2px;
    background: #38c6ec;
    vertical-align: -0.08em;
    animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
    50% { opacity: 0; }
}

html.hero-motion .hero-fade {
    opacity: 0;
    transform: translateY(12px);
}

html.hero-motion .hero-fade.is-in {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

html.hero-motion .hero-services.is-in li {
    animation: chip-in 0.45s ease both;
}

html.hero-motion .hero-services.is-in li:nth-child(2) { animation-delay: 0.06s; }
html.hero-motion .hero-services.is-in li:nth-child(3) { animation-delay: 0.12s; }
html.hero-motion .hero-services.is-in li:nth-child(4) { animation-delay: 0.18s; }
html.hero-motion .hero-services.is-in li:nth-child(5) { animation-delay: 0.24s; }
html.hero-motion .hero-services.is-in li:nth-child(6) { animation-delay: 0.3s; }
html.hero-motion .hero-services.is-in li:nth-child(7) { animation-delay: 0.36s; }

@keyframes chip-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 38rem;
    margin: 0 auto 22px;
    line-height: 1.55;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0 auto 28px;
    padding: 0;
    max-width: min(42rem, 100%);
}

.hero-services li {
    max-width: 100%;
    min-width: 0;
}

.hero-services a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.3;
    text-align: center;
    overflow-wrap: break-word;
}

.hero-services a:hover { border-color: #38c6ec; color: #38c6ec; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0a0a0f;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.btn-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.benefits {
    background: #0a0a0f;
    padding: 0 14px 28px;
    color: #f0f0f5;
    font-family: Inter, sans-serif;
}

.benefits-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 16px;
}

.benefits h2 {
    margin: 0 0 48px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 1.875rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.benefit-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: #0d0b12;
    overflow: hidden;
}

.benefit-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.4;
    pointer-events: none;
}

.benefit-blob--left {
    top: 50%;
    left: -420px;
    width: 460px;
    height: 460px;
    transform: translateY(-50%);
    background: #b03088;
}

.benefit-blob--right {
    top: -112px;
    right: -112px;
    width: 224px;
    height: 224px;
    background: #38c6ec;
}

.benefit-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
}

.benefit-card h3 {
    margin: 0;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.25;
}

.benefit-card p {
    margin: 48px 0 0;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.625;
}

.benefit-card--bottom p {
    margin-top: auto;
    max-width: 320px;
}

.benefit-card--video {
    display: flex;
    flex-direction: column;
}

.benefit-video {
    position: relative;
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.benefit-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-fade {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 128px;
    background: linear-gradient(to bottom, transparent, #0d0b12);
    pointer-events: none;
}

.benefit-caption {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
}

@media (min-width: 640px) {
    .benefits-inner { padding: 80px 24px; }
    .benefits h2 { margin-bottom: 96px; font-size: 2.25rem; }
    .benefits-grid { gap: 16px; }
    .benefit-card { height: 460px; }
    .benefit-copy,
    .benefit-caption { padding: 32px; }
    .benefit-card h3 { font-size: 1.5rem; }
    .benefit-card p { margin-top: 80px; font-size: 14px; }
    .benefit-card--bottom p { margin-top: auto; }
}

@media (min-width: 768px) {
    .benefits-inner { padding: 80px 40px; }
    .benefits h2 { font-size: 3rem; }
    .benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.calc {
    background: #0a0a0f;
    color: #f0f0f5;
    font-family: Inter, sans-serif;
    padding: 64px 16px;
}

.calc-wrap {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
}

.calc-head { text-align: center; margin-bottom: 40px; }

.calc-head p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.55);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.calc-head h2 {
    margin: 0 auto;
    max-width: 16ch;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.calc-board {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.calc-form { background: #0d0d0d; padding: 32px 24px; }

.calc-result {
    padding: 32px 24px;
    background:
        radial-gradient(circle at 80% 0%, rgba(176, 48, 136, 0.22), transparent 42%),
        #0a0a0f;
}

.calc-block {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.calc-form > .calc-block + .calc-block {
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid #1e1e1e;
}

.calc-block legend,
.calc-block h3,
.calc-result > h3 {
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
}

.calc-block h3 span {
    color: #38c6ec;
    font-variant-numeric: tabular-nums;
}

.calc-line {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.calc-line input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
}

.calc-radio,
.calc-box {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    display: grid;
    place-items: center;
}

.calc-radio { border-radius: 50%; }
.calc-box { border-radius: 4px; }
.calc-box svg { opacity: 0; }

.calc-line input:checked + .calc-radio { border-color: #38c6ec; }

.calc-line input:checked + .calc-radio::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38c6ec;
}

.calc-line input:checked + .calc-box {
    border-color: #38c6ec;
    background: #38c6ec;
}

.calc-line input:checked + .calc-box svg { opacity: 1; }

.calc-line input:focus-visible + .calc-radio,
.calc-line input:focus-visible + .calc-box {
    outline: 2px solid #38c6ec;
    outline-offset: 3px;
}

.calc-line-price {
    color: #38c6ec;
    font-size: 0.86rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.calc-range {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 22px;
    margin: 4px 0 0;
    background: transparent;
    cursor: pointer;
}

.calc-range::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38c6ec var(--pct, 13.8%), #2a2a2a var(--pct, 13.8%));
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border: 2px solid #38c6ec;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(56, 198, 236, 0.16);
}

.calc-range::-moz-range-track {
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #2a2a2a;
}

.calc-range::-moz-range-progress {
    height: 4px;
    border-radius: 999px;
    background: #38c6ec;
}

.calc-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid #38c6ec;
    border-radius: 50%;
    background: #fff;
}

.calc-range:focus-visible { outline: none; }
.calc-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(56, 198, 236, 0.35); }

.calc-range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
}

.calc-result > p {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.6;
}

.calc-cards {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.calc-card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.calc-card h4 {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 500;
}

.calc-figure {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.calc-card p:last-child {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
}

.calc-card--you {
    background: linear-gradient(90deg, #b03088, #38c6ec);
    color: #fff;
}

.calc-card--you h4,
.calc-card--you .calc-figure,
.calc-card--you p:last-child { color: #fff; }

.calc-card--you .calc-figure { font-size: clamp(2.2rem, 5vw, 3rem); }

.calc-result .btn-cta {
    width: 100%;
    margin-top: 22px;
    min-height: 48px;
}

@media (min-width: 768px) {
    .calc { padding: 112px 64px; }
    .calc-head h2 { font-size: 2.25rem; }
    .calc-form,
    .calc-result { padding: 40px 36px; }
}

@media (min-width: 1024px) {
    .calc-head h2 { font-size: 3rem; max-width: 18ch; }
    .calc-board { grid-template-columns: 1fr 1fr; }
    .calc-form,
    .calc-result { padding: 48px; }
    .calc-result { min-height: 718px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
}

@media (max-width: 640px) {
    .calc-line { grid-template-columns: 20px minmax(0, 1fr); }
    .calc-line-price { grid-column: 2; }
}

.about-page {
    background: #0a0a0f;
    color: #f0f0f5;
    font-family: Inter, sans-serif;
    padding: 14px 14px 28px;
}

.about-wrap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.about-hero,
.about-leader,
.about-notes article {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: #0d0b12;
}

.about-hero {
    padding: 56px 28px 48px;
    text-align: center;
    background:
        radial-gradient(circle at 50% -40%, rgba(176, 48, 136, 0.45), transparent 46%),
        #0d0b12;
}

.about-kicker {
    margin: 0 0 12px;
    color: #c8a0e0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin: 0 auto 16px;
    max-width: 16ch;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.about-hero p:last-child {
    max-width: 40rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.65;
}

.about-leaders {
    display: grid;
    gap: 16px;
}

.about-leader {
    padding: 36px 24px 32px;
    text-align: center;
}

.about-portrait {
    width: 168px;
    height: 168px;
    margin: 0 auto 18px;
    border: 3px solid #38c6ec;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
    box-shadow: 0 0 0 10px rgba(176, 48, 136, 0.22);
    display: block;
}

.about-leader h2 {
    margin: 0 0 6px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
}

.about-leader p {
    margin: 0;
    color: #c8a0e0;
    font-size: 0.95rem;
}

.about-notes {
    display: grid;
    gap: 16px;
}

.about-notes article { padding: 32px 28px; }

.about-notes h2 {
    margin: 0 0 12px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.about-notes p:last-child {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.65;
}

.about-notes a { color: #38c6ec; }

.about-cta { margin: 4px 0 8px; text-align: center; }

@media (min-width: 760px) {
    .about-hero { padding: 72px 56px; }
    .about-leaders,
    .about-notes { grid-template-columns: 1fr 1fr; }
    .about-portrait { width: 188px; height: 188px; }
}

@media (max-width: 768px) {
    .about-page {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
    }

    .about-hero,
    .about-leader,
    .about-notes article { border-radius: 16px; }
}

@media (max-width: 860px) {
    .icon-pipeline { margin-bottom: 28px; }
    .pipeline-line { max-width: 4.5rem; }
}

@media (max-width: 768px) {
    .home-hero {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
        padding-bottom: 12px;
    }

    .hero-card {
        padding: 28px 16px 32px;
        min-height: 0;
        border-radius: 16px;
    }

    .icon-node { width: 36px; height: 36px; }
    .icon-node svg { width: 16px; height: 16px; }
    .icon-node-center { width: 48px; height: 48px; }
    .icon-node-center .qz-logo {
        width: 22px;
        height: 21px;
        min-width: 22px;
        max-width: 22px;
    }

    .hero-heading {
        font-size: clamp(1.65rem, 7.4vw, 2.15rem);
        line-height: 1.18;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .hero-services {
        gap: 8px;
        margin-bottom: 18px;
    }

    .hero-services a {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 0.92rem;
    }

    .hero-content .btn-cta {
        width: 100%;
        min-height: 48px;
    }

    .service-grid,
    .package-grid,
    .leader-grid,
    .steps,
    .contact-grid,
    .form-row,
    .split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-card {
        border-radius: 16px;
        padding: 22px 14px 26px;
    }

    .hero-content { padding-inline: 0; }
    .icon-pipeline { margin-bottom: 20px; }
    .pipeline-line { max-width: 2.75rem; }
    .icon-node::after { inset: -5px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .burger__bar, .navmenu, .hero-fade, .type-caret { transition: none; animation: none; }
    html.hero-motion .hero-fade { opacity: 1; transform: none; }
}

main {
    background: #0a0a0f;
    color: #f0f0f5;
    overflow-x: clip;
}

.page-hero,
.section,
.legal,
.empty {
    background: #0a0a0f;
    color: #f0f0f5;
    font-family: Inter, sans-serif;
    padding: 0 14px 14px;
}

.page-hero,
.empty { padding-top: 14px; }

.legal { padding-bottom: 28px; }

.page-hero > .wrap,
.section > .wrap,
.legal > .wrap,
.empty > .wrap {
    width: min(1600px, 100%);
    max-width: 1600px;
    margin-inline: auto;
    padding: 48px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 12% -30%, rgba(176, 48, 136, 0.42), transparent 38%),
        #0d0b12;
    color: #f0f0f5;
}

.page-hero h1,
.section h1,
.section h2,
.legal h1,
.legal h2,
.empty h1,
.card h2,
.package h2,
.leader h2,
.form-card {
    font-family: Inter, sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #fff;
}

.page-hero h1,
.empty h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.12;
}

.page-hero .eyebrow,
.section .eyebrow,
.legal .eyebrow,
.empty .eyebrow,
.card .code,
.page-hero .code {
    color: #c8a0e0;
}

.page-hero .lede,
.page-hero .muted,
.section .lede,
.section .muted,
.legal .lede,
.legal p,
.legal li,
.empty .lede,
.legal-meta,
.leader span {
    color: rgba(255, 255, 255, 0.72);
}

.legal a,
.page-hero a:not(.btn),
.section a.text-link,
.muted a {
    color: #38c6ec;
}

.card a.title,
.card h2 a {
    color: #fff;
    text-decoration: none;
}

.card a.title:hover,
.card h2 a:hover,
.text-link:hover { color: #38c6ec; }

.hero-panel,
.card,
.package,
.leader,
.form-card,
.notice {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: #f0f0f5;
}

.fee-list li,
.check-list li { border-bottom-color: rgba(255, 255, 255, 0.08); }

.fee-list strong,
.package .price,
.service-card .price,
.page-hero .price {
    color: #fff;
}

.check-list li::before { color: #38c6ec; }

.btn-primary {
    background: #fff;
    color: #0a0a0f;
    border-color: #fff;
}

.btn-primary:hover { background: #f0f0f5; color: #0a0a0f; }

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.btn-ghost:hover { border-color: #fff; color: #fff; }

.form-card label { color: #fff; }

.form-card input,
.form-card select,
.form-card textarea {
    background: #0a0a0f;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: 2px solid #38c6ec;
    border-color: #38c6ec;
}

@media (max-width: 768px) {
    .page-hero,
    .section,
    .legal,
    .empty {
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
    }

    .page-hero > .wrap,
    .section > .wrap,
    .legal > .wrap,
    .empty > .wrap {
        padding: 22px 16px;
        border-radius: 16px;
        min-width: 0;
    }

    .footer-shell { padding: 22px 16px; }

    .section-head { gap: 16px; margin-bottom: 1rem; }

    .page-hero h1,
    .empty h1 {
        font-size: clamp(1.45rem, 6.2vw, 1.85rem);
        line-height: 1.2;
    }

    .fee-list li {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 6px 12px;
    }

    .fee-list span {
        flex: 1 1 10rem;
        min-width: 0;
    }

    .fee-list strong {
        flex: 0 0 auto;
        margin-left: auto;
        white-space: nowrap;
    }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; min-height: 48px; }

    h1, h2, h3, p, li, a, span { overflow-wrap: break-word; }
}
