:root {
    --primary: #36adac;
    --secondary: #d4dce7;
    --tertiary: #298281;
    --accent: #f2cc2d;
    --surface: #f6f9fb;
    --surface-strong: #ffffff;
    --text: #17343d;
    --muted: #59727a;
    --border: rgba(41, 130, 129, 0.18);
    --shadow-lg: 0 24px 60px rgba(23, 52, 61, 0.14);
    --shadow-md: 0 16px 32px rgba(23, 52, 61, 0.1);
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Aptos", "Segoe UI Variable", "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(54, 173, 172, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(242, 204, 45, 0.18), transparent 24%),
        linear-gradient(160deg, #eef4f8 0%, #f7fafc 46%, #edf4f6 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
    pointer-events: none;
    opacity: 0.6;
}

.page-shell {
    position: relative;
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: 1.25rem 0 3rem;
}

.top-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(23, 52, 61, 0.08);
    backdrop-filter: blur(16px);
}

.logo-slot {
    flex-wrap: wrap;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(212, 220, 231, 0.7));
    border: 1.5px dashed rgba(41, 130, 129, 0.35);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.logo-slot--right {
    align-items: flex-end;
    text-align: right;
}

.logo-slot__image {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

.logo-slot__image--left {
    margin-right: auto;
}

.logo-slot__image--right {
    margin-left: auto;
}

.status-chip {
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    box-shadow: 0 10px 25px rgba(41, 130, 129, 0.28);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 21rem);
    padding: 2rem 0 0;
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 2rem;
    width: 100%;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 251, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

a {
        color: #33a3a2;
    font-weight: 600;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(0.4rem, 1vw, 0.9rem);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(242, 204, 45, 0.18);
    color: #7b6200;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.35rem, 4vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-description {
    margin: 1.4rem 0 0;
    max-width: 60ch;
    font-size: 1.075rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero-supporting-text {
    margin: 1rem 0 0;
    max-width: 56ch;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(23, 52, 61, 0.78);
}

.info-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-panel__item {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.info-panel__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tertiary);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.illustration-frame {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(54, 173, 172, 0.12), rgba(255, 255, 255, 0.85)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(212, 220, 231, 0.5));
    border: 1px solid rgba(41, 130, 129, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 28px 48px rgba(23, 52, 61, 0.12);
    overflow: hidden;
}

.illustration-frame::before,
.illustration-frame::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.illustration-frame::before {
    width: 240px;
    height: 240px;
    top: -60px;
    right: -50px;
    background: radial-gradient(circle, rgba(54, 173, 172, 0.28), transparent 70%);
}

.illustration-frame::after {
    width: 180px;
    height: 180px;
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, rgba(242, 204, 45, 0.24), transparent 72%);
}

.illustration-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    padding: 1.5rem;
    object-fit: contain;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .top-banner {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .logo-slot,
    .logo-slot--right {
        align-items: center;
        text-align: center;
        border-radius: 24px;
    }

    .hero {
        min-height: auto;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-title,
    .hero-description,
    .hero-supporting-text {
        max-width: none;
    }

    .illustration-frame {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(calc(100% - 1rem), var(--container));
        padding-bottom: 1.5rem;
    }

    .top-banner {
        padding: 0.85rem;
        gap: 0.8rem;
    }

    .logo-slot {
        min-height: 74px;
        padding: 0.9rem 1rem;
    }

    .logo-slot__image {
        max-height: 40px;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-card {
        padding: 1rem;
        border-radius: 24px;
    }

    .hero-copy {
        padding: 0.2rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .info-panel {
        grid-template-columns: 1fr;
    }

    .illustration-frame {
        min-height: 300px;
    }

    .illustration-image {
        min-height: 300px;
        padding: 1rem;
    }
}