:root {
    --blue-950: #001b4d;
    --blue-900: #002b72;
    --blue-800: #0647b8;
    --blue-700: #0757df;
    --blue-600: #0b6df6;
    --blue-500: #168cff;
    --blue-100: #eaf3ff;
    --blue-050: #f5f9ff;
    --ink: #071b3d;
    --muted: #64748b;
    --line: #dbe8ff;
    --white: #ffffff;
    --soft: #f7fbff;
    --shadow: 0 24px 70px rgba(4, 35, 90, 0.14);
    --shadow-soft: 0 16px 50px rgba(8, 54, 128, 0.10);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(234, 243, 255, .92), transparent 34rem),
        var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 18px;
    top: -50px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--blue-950);
    color: var(--white);
    transition: top .2s ease;
}

.skip-link:focus {
    top: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(219, 232, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    border-bottom-color: rgba(219, 232, 255, 1);
    box-shadow: 0 12px 34px rgba(8, 54, 128, .08);
}

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

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

.brand-mark {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 85, 220, 0.18));
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 1.35rem;
    letter-spacing: 0;
    color: var(--blue-950);
}

.brand-copy small {
    margin-top: 5px;
    color: var(--blue-700);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .01em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav > a:not(.btn) {
    color: #284568;
    font-weight: 700;
    font-size: .94rem;
    padding: 10px 13px;
    border-radius: 999px;
    transition: .2s ease;
}

.site-nav > a:not(.btn):hover,
.site-nav > a:not(.btn).is-active {
    color: var(--blue-700);
    background: var(--blue-100);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-950);
    transition: .2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
    box-shadow: 0 14px 30px rgba(7, 87, 223, 0.26);
}

.btn-primary:hover {
    box-shadow: 0 18px 42px rgba(7, 87, 223, 0.32);
}

.btn-small {
    padding: 10px 17px;
    font-size: .92rem;
}

.btn-light {
    color: var(--blue-900);
    background: var(--white);
    box-shadow: 0 16px 36px rgba(0, 26, 76, 0.22);
}

.btn-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .10);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .18);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .18), transparent 24rem),
        radial-gradient(circle at 10% 78%, rgba(22, 140, 255, .28), transparent 28rem),
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(135deg, #00133d 0%, #043d9f 52%, #0b78e3 100%);
    background-size: auto, auto, 56px 56px, 56px 56px, auto;
    color: var(--white);
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 19, 61, .74), rgba(0, 19, 61, .10) 64%, rgba(255, 255, 255, .10)),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .22));
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--white);
    opacity: .24;
    z-index: -1;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 590px);
    gap: clamp(34px, 6vw, 78px);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: 96px 0 108px;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .88);
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.eyebrow.blue {
    color: var(--blue-700);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: 0;
    line-height: 1.02;
}

h1 {
    max-width: 820px;
    margin-bottom: 20px;
    font-size: clamp(4.2rem, 11vw, 8.4rem);
    letter-spacing: -.045em;
    text-shadow: 0 18px 46px rgba(0, 17, 56, .24);
}

h2 {
    margin-bottom: 18px;
    color: var(--blue-950);
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    letter-spacing: -.035em;
}

h3 {
    color: var(--blue-950);
    font-size: 1.35rem;
}

.hero-lead {
    max-width: 660px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-panel {
    width: min(100%, 600px);
    justify-self: end;
}

.hero-collage {
    position: relative;
    min-height: 540px;
    isolation: isolate;
}

.hero-collage::before {
    content: "";
    position: absolute;
    inset: 40px 44px 42px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background:
        radial-gradient(circle at 42% 36%, rgba(255, 255, 255, .32), transparent 31%),
        radial-gradient(circle at 58% 64%, rgba(22, 140, 255, .25), transparent 42%),
        rgba(35, 111, 218, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 42px 90px rgba(0, 19, 65, .22);
    z-index: -2;
}

.hero-collage::after {
    content: "";
    position: absolute;
    inset: 96px 124px 98px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, .14), rgba(255, 255, 255, .03) 56%, transparent 72%);
    filter: blur(.2px);
    z-index: -1;
}

.collage-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 430px;
    height: 430px;
    border: 1px dashed rgba(255, 255, 255, .24);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ring-spin 34s linear infinite;
    z-index: -1;
}

.collage-core-card,
.floating-feature-card,
.brand-preview-card,
.process-step,
.contact-info-list div {
    display: flex;
    align-items: center;
}

.collage-core-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 230px;
    min-height: 184px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px 22px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 34px;
    color: var(--ink);
    background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(239, 247, 255, .95));
    box-shadow: 0 34px 80px rgba(0, 19, 65, .30);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.core-icon,
.feature-icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.core-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--white), var(--blue-050));
    box-shadow: inset 0 0 0 1px var(--line), 0 14px 28px rgba(7, 87, 223, .16);
}

.core-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.collage-core-card span,
.collage-core-card strong,
.collage-core-card p,
.floating-feature-card strong,
.floating-feature-card small {
    display: block;
}

.collage-core-card span {
    margin-bottom: 4px;
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.collage-core-card strong {
    margin-bottom: 6px;
    color: var(--blue-950);
    font-size: 1.05rem;
    line-height: 1.12;
}

.collage-core-card p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.38;
}

.floating-feature-card {
    --rotate: 0deg;
    position: absolute;
    gap: 12px;
    min-width: 168px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 22px 54px rgba(0, 19, 65, .18);
    transform: rotate(var(--rotate));
    animation: float-card 7.4s ease-in-out infinite;
    transition: translate .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    will-change: translate;
    z-index: 2;
}

.floating-feature-card:hover {
    translate: 0 -8px;
    border-color: rgba(255, 255, 255, .95);
    box-shadow: 0 30px 70px rgba(0, 19, 65, .30);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
    box-shadow: 0 14px 28px rgba(7, 87, 223, .22);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-feature-card strong {
    color: var(--blue-950);
    font-size: .94rem;
    line-height: 1.1;
}

.floating-feature-card small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
}

.card-tasks {
    top: 36px;
    left: 82px;
    --rotate: -2deg;
}

.card-calendar {
    top: 74px;
    right: 48px;
    --rotate: 2deg;
    animation-delay: -.9s;
}

.card-hours {
    top: 220px;
    left: 0;
    --rotate: 1deg;
    animation-delay: -1.8s;
}

.card-approvals {
    top: 224px;
    right: 0;
    --rotate: -1deg;
    animation-delay: -2.6s;
}

.card-users {
    left: 70px;
    bottom: 70px;
    --rotate: 2deg;
    animation-delay: -3.4s;
}

.card-status {
    right: 82px;
    bottom: 48px;
    --rotate: -1deg;
    animation-delay: -4.1s;
}

@media (min-width: 1021px) {
    .hero .container {
        width: min(1420px, calc(100% - 56px));
    }

    .hero-grid {
        grid-template-columns: minmax(0, .9fr) minmax(500px, 700px);
        gap: clamp(18px, 2.5vw, 42px);
    }

    .hero-content {
        max-width: 720px;
        margin-left: -24px;
    }

    .home-page .hero h1 {
        max-width: 720px;
        font-size: clamp(4.4rem, 6.2vw, 7.35rem);
    }

    .hero-panel {
        width: min(100%, 700px);
        margin-right: -28px;
    }

    .hero-collage {
        min-height: 610px;
        transition: opacity .7s ease, filter .3s ease;
    }

    .hero .hero-collage.is-visible {
        transform: translateY(0);
    }

    .hero-collage::before {
        inset: 38px 58px 40px;
    }

    .hero-collage::after {
        inset: 102px 150px 104px;
    }

    .collage-ring {
        width: 470px;
        height: 470px;
    }

    .collage-core-card {
        transform: translate(-50%, -50%);
    }

    .floating-feature-card {
        transition: translate .22s ease, box-shadow .22s ease, border-color .22s ease, filter .3s ease;
    }

    .card-tasks {
        top: 28px;
        left: 72px;
        z-index: 4;
    }

    .card-calendar {
        top: 72px;
        right: -4px;
        z-index: 1;
        filter: saturate(.9) brightness(.98);
    }

    .card-hours {
        top: 252px;
        left: -22px;
        z-index: 1;
        filter: saturate(.92);
    }

    .card-approvals {
        top: 258px;
        right: -28px;
        z-index: 4;
    }

    .card-users {
        left: 58px;
        bottom: 42px;
        z-index: 5;
    }

    .card-status {
        right: 42px;
        bottom: 18px;
        z-index: 1;
        filter: saturate(.9);
    }

    .hero:hover .collage-core-card {
        box-shadow:
            0 42px 90px rgba(0, 19, 65, .36),
            0 0 58px rgba(105, 199, 255, .24);
    }

    .hero:hover .floating-feature-card {
        border-color: rgba(255, 255, 255, .94);
        box-shadow: 0 30px 74px rgba(0, 19, 65, .28);
    }
}

.hero-cursor-glow {
    position: absolute;
    left: var(--hero-glow-x, 72%);
    top: var(--hero-glow-y, 42%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 190, 255, .28) 0%, rgba(25, 128, 245, .13) 38%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity .22s ease;
    contain: strict;
    z-index: 0;
}

.hero:hover .hero-cursor-glow {
    opacity: 1;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
    .hero-cursor-glow {
        display: none;
    }
}

@keyframes float-card {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -13px;
    }
}

@keyframes ring-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.section {
    padding: 104px 0;
}

.section-white {
    background: var(--white);
}

.section-soft {
    background: linear-gradient(180deg, var(--soft), #ffffff);
}

.intro-section {
    padding-top: 80px;
}

.split-intro {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 56px;
    align-items: end;
}

.split-intro p,
.section-heading p,
.branding-copy p,
.workspace-copy p,
.contact-copy p,
.cta-card p {
    color: var(--muted);
    font-size: 1.06rem;
}

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

.section-heading .eyebrow {
    justify-content: center;
}

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

.feature-card {
    position: relative;
    min-height: 270px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(22, 140, 255, .10), transparent 13rem),
        rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid rgba(22, 140, 255, .18);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(22, 140, 255, .32);
    box-shadow: var(--shadow);
}

.icon-bubble {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
    box-shadow: 0 14px 28px rgba(7, 87, 223, .22);
    font-weight: 900;
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.workspace-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 80px),
        linear-gradient(135deg, #001a53 0%, #0349be 54%, #087af5 100%);
}

.workspace-section h2,
.workspace-section h3 {
    color: var(--white);
}

.workspace-grid {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 52px;
    align-items: center;
}

.workspace-copy p {
    color: rgba(255, 255, 255, .78);
}

.url-stack {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .92em;
}

.url-stack code {
    width: fit-content;
    max-width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    overflow-wrap: anywhere;
}

.process-card {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
    background: rgba(255, 255, 255, .13);
    box-shadow: 0 32px 80px rgba(0, 18, 70, .28);
    backdrop-filter: blur(18px);
}

.process-step {
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
}

.process-step span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--blue-800);
    background: var(--white);
    font-weight: 900;
}

.process-step h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

.branding-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 70px;
    align-items: center;
}

.branding-panel {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, var(--blue-050), var(--white));
    box-shadow: var(--shadow-soft);
}

.brand-preview-card {
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 16px 42px rgba(8, 54, 128, .08);
}

.brand-preview-card:nth-child(2) {
    transform: translateX(34px);
}

.brand-preview-card:nth-child(3) {
    transform: translateX(12px);
}

.preview-company-logo,
.brand-preview-card img {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
    font-weight: 950;
    font-size: 1.3rem;
}

.brand-preview-card img {
    padding: 5px;
    object-fit: contain;
    background: var(--blue-050);
}

.brand-preview-card strong,
.brand-preview-card small {
    display: block;
}

.brand-preview-card strong {
    color: var(--blue-950);
    font-size: 1.1rem;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.brand-preview-card small {
    color: var(--muted);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.soft-preview .preview-company-logo {
    background: linear-gradient(135deg, #0a2f79, #168cff);
}

.light-preview {
    background: var(--blue-050);
}

.check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: #254361;
    font-weight: 750;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue-700);
    font-size: .8rem;
    font-weight: 900;
}

.check-list li::before {
    content: "\2713";
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.stats-strip div {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    background: var(--blue-050);
}

.stats-strip strong {
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.cta-section {
    padding: 70px 0 104px;
    background: var(--white);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 42px;
    border-radius: 24px;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 42%),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
    box-shadow: var(--shadow);
}

.cta-card h2,
.cta-card p {
    color: var(--white);
}

.cta-card h2 {
    max-width: 780px;
    font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.cta-card p {
    max-width: 700px;
    margin-bottom: 0;
    opacity: .82;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .10), transparent 44%),
        linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.page-hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 1.14rem;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 40px;
    align-items: center;
}

.contact-summary-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    background: rgba(255, 255, 255, .14);
    box-shadow: 0 28px 70px rgba(0, 18, 70, .25);
    backdrop-filter: blur(16px);
}

.contact-summary-card span,
.contact-summary-card strong,
.contact-summary-card p {
    display: block;
}

.contact-summary-card span {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.contact-summary-card strong {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.35rem;
    letter-spacing: 0;
}

.contact-section {
    padding-top: 96px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 54px;
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-info-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--blue-050);
}

.contact-info-list strong {
    color: var(--blue-950);
}

.contact-info-list span {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
}

label > span {
    color: var(--blue-950);
    font-size: .92rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--blue-050);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(22, 140, 255, .12);
}

.subdomain-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--blue-050);
    overflow: hidden;
}

.subdomain-field span {
    padding: 0 14px;
    color: var(--blue-700);
    font-weight: 900;
    white-space: nowrap;
}

.subdomain-field input {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.subdomain-field:focus-within {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(22, 140, 255, .12);
    background: var(--white);
}

.form-alert {
    padding: 15px 16px;
    border-radius: 18px;
    font-weight: 800;
}

.form-alert ul {
    margin: 8px 0 0 18px;
    padding: 0;
    font-weight: 650;
}

.form-alert.success {
    color: #0f5132;
    background: #dff7ea;
    border: 1px solid #bdebd2;
}

.form-alert.error {
    color: #842029;
    background: #fde8ea;
    border: 1px solid #f5c2c7;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-submit {
    width: fit-content;
    min-width: 170px;
}

.site-footer {
    padding: 64px 0 26px;
    color: rgba(255, 255, 255, .78);
    background: #031633;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .75fr .9fr .75fr;
    gap: 34px;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
    color: var(--white);
}

.footer-brand .brand-mark {
    width: 42px;
    height: 42px;
}

.footer-text {
    color: rgba(255, 255, 255, .68);
}

.site-footer h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer a:not(.brand) {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
    transition: color .2s ease;
}

.site-footer a:not(.brand):hover,
.footer-link {
    color: var(--white) !important;
}

.site-footer code {
    color: #b8dcff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .52);
    font-size: .92rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.btn-secondary {
    color: var(--blue-800);
    border: 1px solid var(--line);
    background: var(--blue-050);
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--blue-700);
    background: var(--blue-700);
}

.split-intro > div:last-child p + p {
    margin-top: 16px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-page .hero h1 {
    max-width: 780px;
    font-size: clamp(3.25rem, 6vw, 5.8rem);
}

.home-page .hero-actions {
    margin-bottom: 0;
}

.hero-trust span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .09);
    font-size: .78rem;
    font-weight: 750;
}

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

.audience-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(8, 54, 128, .07);
}

.audience-card strong {
    color: var(--blue-950);
    font-size: 1.12rem;
}

.audience-card span {
    color: var(--muted);
}

.pricing-section {
    background:
        radial-gradient(circle at top center, rgba(22, 140, 255, .10), transparent 30rem),
        var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
    border: 2px solid var(--blue-600);
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(7, 87, 223, .18);
}

.popular-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue-700);
    font-size: .7rem;
    font-weight: 850;
}

.plan-label {
    display: block;
    margin-bottom: 12px;
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pricing-card h3 {
    min-height: 58px;
    margin-bottom: 20px;
}

.price {
    display: grid;
    gap: 3px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.price strong {
    color: var(--blue-950);
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -.04em;
}

.price span,
.pricing-note {
    color: var(--muted);
    font-size: .86rem;
}

.pricing-list,
.service-card ul {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 24px 0 28px;
    list-style: none;
}

.pricing-list li,
.service-card li {
    position: relative;
    padding-left: 25px;
    color: #284568;
}

.pricing-list li::before,
.service-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--blue-600);
    font-weight: 900;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 800px;
    margin: 28px auto 0;
    text-align: center;
}

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

.service-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card.emphasized {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.service-card > span {
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 12px 0 3px;
    font-size: 2rem;
}

.service-card p {
    color: var(--muted);
}

.service-card.emphasized > span,
.service-card.emphasized h3,
.service-card.emphasized p,
.service-card.emphasized li,
.service-card.emphasized li::before {
    color: var(--white);
}

.custom-strip {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 30px;
    align-items: center;
    margin-top: 22px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.custom-strip span {
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.custom-strip h3 {
    margin: 8px 0 0;
}

.custom-strip p {
    margin: 0;
    color: var(--muted);
}

.managed-section {
    background: var(--white);
}

.managed-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.managed-grid p {
    color: var(--muted);
}

.managed-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.managed-plans div {
    display: grid;
    gap: 8px;
    padding: 24px 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--blue-050);
    text-align: center;
}

.managed-plans span {
    color: var(--blue-700);
    font-weight: 850;
}

.managed-plans strong {
    color: var(--blue-950);
    font-size: 1.45rem;
}

.managed-plans small {
    color: var(--muted);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1020px) {
    .hero-grid,
    .split-intro,
    .workspace-grid,
    .branding-grid,
    .contact-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding: 72px 0 88px;
    }

    .hero-panel {
        width: min(100%, 620px);
        justify-self: start;
    }

    .hero-collage {
        min-height: 560px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .managed-grid,
    .custom-strip {
        grid-template-columns: 1fr;
    }

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

    .contact-summary-card {
        max-width: 520px;
    }
}

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

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        left: 20px;
        right: 20px;
        display: grid;
        align-items: stretch;
        gap: 6px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(255, 255, 255, .98);
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: .2s ease;
    }

    .nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        justify-content: center;
        text-align: center;
    }

    .brand-copy small {
        display: none;
    }

    .section {
        padding: 78px 0;
    }

    .feature-grid,
    .audience-grid,
    .managed-plans,
    .stats-strip,
    .field-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-collage {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 28px;
        background: rgba(35, 111, 218, .18);
    }

    .hero-collage::before,
    .hero-collage::after,
    .collage-glow,
    .collage-ring {
        display: none;
    }

    .collage-core-card,
    .floating-feature-card {
        position: relative;
        inset: auto;
        width: 100%;
        min-width: 0;
        transform: none;
        animation: none;
    }

    .collage-core-card {
        grid-column: 1 / -1;
        min-height: auto;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .floating-feature-card {
        --rotate: 0deg;
    }

    .brand-preview-card:nth-child(2),
    .brand-preview-card:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-grid {
        padding: 54px 0 66px;
    }

    h1 {
        font-size: clamp(3.25rem, 22vw, 5.6rem);
    }

    .home-page .hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-card .btn,
    .btn-submit {
        width: 100%;
    }

    .collage-core-card,
    .floating-feature-card,
    .contact-form,
    .cta-card,
    .process-card,
    .branding-panel {
        border-radius: 18px;
        padding: 20px;
    }

    .hero-collage {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .collage-core-card {
        order: -1;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .floating-feature-card {
        --rotate: 0deg;
    }

    .subdomain-field {
        grid-template-columns: 1fr;
    }

    .subdomain-field span {
        padding: 10px 14px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}
