:root {
    --bg: #f7fafc;
    --bg-soft: #eef5fb;
    --panel: rgba(255, 255, 255, 0.82);
    --panel-strong: rgba(255, 255, 255, 0.94);
    --text: #000000;
    --muted: rgba(0, 0, 0, 0.62);
    --line: rgba(0, 0, 0, 0.08);
    --theme: #0067c7;
    --theme-soft: rgba(0, 103, 199, 0.12);
    --shadow: 0 30px 80px rgba(0, 45, 90, 0.10);
    --radius: 28px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(0, 103, 199, 0.10), transparent 34%),
        radial-gradient(circle at 85% 24%, rgba(0, 103, 199, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 52%, #f3f8fc 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    overflow-x: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(247, 250, 252, 0.76);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: 1.15rem;
}

.brand__name {
    color: var(--theme);
    font-size: 1.2em;
}

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

.site-nav a {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 11px 14px;
    border-radius: 999px;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
    transform: translateY(-1px);
    background: rgba(0, 103, 199, 0.06);
    color: var(--theme);
}

.site-nav .site-nav__cta {
    color: white;
    background: var(--theme);
    box-shadow: 0 12px 26px rgba(0, 103, 199, 0.24);
}

.hero {
    position: relative;
    padding: 54px 0 36px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.5;
}

.hero::before {
    top: 60px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: rgba(0, 103, 199, 0.10);
}

.hero::after {
    right: -50px;
    top: 180px;
    width: 240px;
    height: 240px;
    background: rgba(0, 103, 199, 0.12);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    gap: clamp(24px, 4vw, 68px);
    min-height: calc(100vh - 150px);
}

.hero__content h1 {
    margin: 22px 0 0;
    font-size: clamp(3.4rem, 10vw, 7.3rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 950;
}

.hero__title-top {
    /* display: block; */
    color: #000000;
}

.hero__title-bottom {
    /* display: block; */
    color: var(--theme);
}

.hero__content p {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.8vw, 1.42rem);
    line-height: 1.62;
}

.hero__content p strong {
    color: var(--text);
    font-weight: 800;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 24px;
    border-radius: 18px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
    background: var(--theme);
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 103, 199, 0.26);
}

.button--ghost {
    color: #000000;
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(0, 0, 0, 0.08);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.68);
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.pill__accent {
    color: var(--theme);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.orb {
    position: absolute;
    inset: 16% 14% 14% 16%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 103, 199, 0.16) 0%, rgba(0, 103, 199, 0.08) 34%, rgba(0, 103, 199, 0.03) 60%, transparent 74%);
    filter: blur(24px);
    animation: breathe 7s ease-in-out infinite;
}

.halo {
    position: absolute;
    inset: 10% 12% 12% 10%;
    border-radius: 50%;
    border: 1px solid rgba(0, 103, 199, 0.10);
    animation: spin 16s linear infinite;
}

.halo--two {
    inset: 18% 18% 18% 18%;
    animation-direction: reverse;
    animation-duration: 22s;
}

.zoom-preview {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 1 / 1;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 252, 0.94)),
        linear-gradient(180deg, rgba(0, 103, 199, 0.04), rgba(0, 103, 199, 0));
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
}

.zoom-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 103, 199, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 103, 199, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.6;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 50%, transparent 100%);
}

.zoom-preview canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.zoom-preview__badge,
.zoom-preview__caption {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.zoom-preview__badge {
    top: 18px;
    left: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--theme);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: driftBadge 5.2s ease-in-out infinite;
}

.zoom-preview__caption {
    right: 18px;
    bottom: 18px;
    max-width: 250px;
    padding: 12px 14px;
    border-radius: 18px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.88rem;
    line-height: 1.45;
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
    padding-bottom: 62px;
}

.card {
    padding: 24px;
    border-radius: 24px;
    background: var(--panel);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--theme-soft);
    color: var(--theme);
}

.card h3 {
    margin: 16px 0 8px;
    font-size: 1.15rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.98rem;
}

.section-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 0 56px;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.95rem;
}

.section-footer__link {
    color: var(--theme);
    font-weight: 800;
}

.mini-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes driftBadge {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.06);
        opacity: 0.78;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1080px) {
    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 18px;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 2;
        min-height: 420px;
    }

    .info-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(calc(100% - 26px), var(--container));
    }

    .site-header__inner {
        min-height: 66px;
    }

    .site-nav {
        gap: 8px;
    }

    .site-nav a {
        padding: 9px 10px;
        letter-spacing: 0.14em;
        font-size: 0.7rem;
    }

    .hero {
        padding-top: 28px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero__visual {
        min-height: 340px;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}