:root {
    --bg: #f4fbff;
    --bg-2: #e7f8fb;
    --bg-3: #dff5ef;

    --panel: rgba(255, 255, 255, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --panel-border: rgba(41, 139, 180, 0.20);

    --text: #17314a;
    --text-strong: #0b2440;
    --muted: #587385;
    --muted-2: #6b8b91;

    --accent: #22c7d8;
    --accent-2: #42d8bc;
    --accent-3: #2376c9;
    --gold: #e8bb54;
    --gold-soft: #fff1bd;

    --shadow: rgba(30, 93, 133, 0.18);
    --shadow-strong: rgba(30, 93, 133, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 8%, rgba(34, 199, 216, 0.22), transparent 28rem),
        radial-gradient(circle at 85% 4%, rgba(232, 187, 84, 0.18), transparent 24rem),
        radial-gradient(circle at 78% 78%, rgba(66, 216, 188, 0.18), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, var(--bg-2) 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(35, 118, 201, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 118, 201, 0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 75%);
}

.page {
    min-height: calc(100vh - 72px);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 64px 24px 48px;

    background-image:
        linear-gradient(
            90deg,
            rgba(244, 251, 255, 0.82) 0%,
            rgba(244, 251, 255, 0.50) 38%,
            rgba(244, 251, 255, 0.12) 72%,
            rgba(244, 251, 255, 0.00) 100%
        ),
        url("/assets/img/hero-bg.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(244, 251, 255, 0.84));
    pointer-events: none;
}

.hero-shade {
    /* display: none; */
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 34%, rgba(34, 199, 216, 0.22), transparent 19rem),
        radial-gradient(circle at 34% 72%, rgba(232, 187, 84, 0.20), transparent 18rem),
        radial-gradient(circle at 55% 18%, rgba(66, 216, 188, 0.15), transparent 20rem);
    pointer-events: none;
}

.mist {
    /* display: none; */
    position: absolute;
    width: 58vw;
    height: 24vh;
    filter: blur(34px);
    opacity: 0.32;
    border-radius: 999px;
    pointer-events: none;
    background: rgba(99, 226, 224, 0.46);
}

.mist-one {
    left: -12vw;
    bottom: 7vh;
    transform: rotate(-8deg);
}

.mist-two {
    right: -18vw;
    top: 17vh;
    transform: rotate(13deg);
    background: rgba(255, 234, 164, 0.40);
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1080px, 100%);
    margin: 0 auto;
    display: block;
}

.server-ribbon {
    display: none;
}

.hero-card {
    position: relative;
    width: min(760px, 100%);
    padding: clamp(30px, 4.4vw, 50px);
    border: 1px solid var(--panel-border);
    border-radius: 34px;
    background:
        linear-gradient(135deg, var(--panel-strong), rgba(255, 255, 255, 0.64)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34));
    box-shadow:
        0 34px 90px var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(34, 199, 216, 0.18);
    border-radius: 24px;
    pointer-events: none;
}

.hero-card::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 28px;
    width: 120px;
    height: 120px;
    opacity: 0.26;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 16%, transparent 17%),
        conic-gradient(from 45deg, transparent, rgba(34, 199, 216, 0.44), transparent, rgba(232, 187, 84, 0.38), transparent);
    pointer-events: none;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--accent-3);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.title-block {
    position: relative;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.title-block::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(520px, 100%);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent), rgba(34, 199, 216, 0));
}

.logo-kicker,
.subtitle {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.logo-kicker {
    color: var(--muted-2);
    font-size: 0.78rem;
    font-weight: 800;
}

.site-logo {
    display: block;
    width: min(620px, 100%);
    height: auto;
    margin: 8px 0 4px -8px;
    filter:
        drop-shadow(0 14px 24px rgba(35, 118, 201, 0.22))
        drop-shadow(0 0 18px rgba(34, 199, 216, 0.18));
}

h1 {
    margin: 0;
    max-width: 800px;
    font-size: clamp(4.2rem, 10vw, 8.2rem);
    line-height: 0.88;
    letter-spacing: 0.03em;
    color: var(--text-strong);
    text-shadow:
        0 5px 22px rgba(255, 255, 255, 0.80),
        0 0 30px rgba(34, 199, 216, 0.20);
}

.subtitle {
    margin-top: 6px;
    color: var(--gold);
    font-size: clamp(0.94rem, 1.7vw, 1.25rem);
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.lead {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.68;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid rgba(35, 118, 201, 0.18);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

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

.button.primary {
    color: #ffffff;
    border-color: rgba(35, 118, 201, 0.24);
    background: linear-gradient(135deg, var(--accent-3), var(--accent), var(--accent-2));
    box-shadow: 0 12px 28px rgba(34, 199, 216, 0.24);
}

.button.primary:hover {
    box-shadow: 0 16px 34px rgba(34, 199, 216, 0.34);
}

.button.secondary {
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.58);
}

.button.secondary:hover {
    border-color: rgba(232, 187, 84, 0.55);
    background: rgba(255, 255, 255, 0.82);
}

.status-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 34px 0 0;
}

.status-box div {
    padding: 18px;
    border: 1px solid rgba(35, 118, 201, 0.14);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
    box-shadow: 0 12px 28px rgba(30, 93, 133, 0.10);
}

.label {
    display: block;
    margin-bottom: 9px;
    color: var(--muted-2);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-box strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--text-strong);
}

.small {
    margin: 24px 0 0;
    color: var(--muted-2);
    font-size: 0.94rem;
    line-height: 1.55;
}

.preview {
    position: relative;
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 78px 24px 90px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-mark {
    color: var(--accent-3);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.preview h2 {
    margin: 14px 0 16px;
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.68;
}

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

.grid article {
    position: relative;
    min-height: 220px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(35, 118, 201, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
        rgba(255, 255, 255, 0.44);
    box-shadow: 0 20px 52px rgba(30, 93, 133, 0.12);
}

.grid article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--gold));
}

.grid article::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -46px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(34, 199, 216, 0.20);
    background: radial-gradient(circle, rgba(34, 199, 216, 0.08), transparent 62%);
}

.card-number {
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.grid h3 {
    margin: 26px 0 12px;
    color: var(--text-strong);
    font-size: 1.35rem;
}

.grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

footer {
    padding: 28px 24px;
    color: var(--muted-2);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.50));
    border-top: 1px solid rgba(35, 118, 201, 0.10);
}

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

    .server-ribbon {
        display: none;
    }
}

@media (max-width: 800px) {
    .hero {
        min-height: auto;
        padding: 38px 16px 30px;
    }

    .hero-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .hero-card::before,
    .hero-card::after {
        display: none;
    }

    .site-logo {
    display: block;
    width: min(460px, 82vw);
    height: auto;
    margin: 10px 0 8px -6px;
    object-fit: contain;
    filter:
        drop-shadow(0 12px 22px rgba(35, 118, 201, 0.20))
        drop-shadow(0 0 14px rgba(34, 199, 216, 0.18));
    }

    .status-box,
    .grid {
        grid-template-columns: 1fr;
    }

    .preview {
        padding-top: 54px;
    }
}