:root {
    --color-primary: #2c5364;
    --color-primary-dark: #1e3a47;
    --color-accent-teal: #4dd4d4;
    --color-accent-blue: #3b8fd6;
    --color-muted: #6b7c8c;
    --color-badge-bg: #d4e4f0;
    --color-bg: #f5f7fa;
    --color-surface: #ffffff;
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
    transition: none !important;
    animation: none !important;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
}

.notice-banner {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-bottom: 3px solid var(--color-accent-blue);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(44, 83, 100, 0.25);
}

.notice-banner__content {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-banner__icon {
    flex-shrink: 0;
    color: var(--color-accent-teal);
    margin-top: 0.1rem;
}

.notice-banner__text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.notice-banner__text strong {
    font-weight: 700;
    color: var(--color-accent-teal);
}

.fullpage-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.fullpage-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(77, 212, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fullpage-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 143, 214, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-width: 20rem;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-badge-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    margin-bottom: 1.75rem;
    box-shadow: 0 2px 8px rgba(44, 83, 100, 0.08);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0 0 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0 0 2.5rem;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-actions .hero-btn {
    flex: 0 0 auto;
    width: 15.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 0.9rem 1.75rem;
    border-radius: 24px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    min-width: fit-content;
}

.hero-btn--primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(44, 83, 100, 0.2);
}

.hero-btn--primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(44, 83, 100, 0.25);
}

.hero-btn--secondary {
    background: var(--color-surface);
    color: var(--color-primary);
    border-color: #d4e4f0;
    box-shadow: 0 2px 12px rgba(44, 83, 100, 0.08);
}

.hero-btn--secondary:hover {
    background: #f8fbfd;
    border-color: #b8d4e8;
    box-shadow: 0 4px 16px rgba(44, 83, 100, 0.12);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(44, 83, 100, 0.1);
}

.hero-feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid rgba(44, 83, 100, 0.08);
    box-shadow: 0 2px 8px rgba(44, 83, 100, 0.04);
}

.hero-feature__icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-blue));
    border-radius: 50%;
    font-size: 24px;
    color: white;
}

.hero-feature__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.25rem;
}

.hero-feature__text {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.circle-1 {
    width: 12rem;
    height: 12rem;
    background: rgba(77, 212, 212, 0.06);
    top: 10%;
    left: 5%;
    border: 1px solid rgba(77, 212, 212, 0.1);
}

.circle-2 {
    width: 8rem;
    height: 8rem;
    background: rgba(59, 143, 214, 0.05);
    bottom: 15%;
    right: 8%;
    border: 1px solid rgba(59, 143, 214, 0.1);
}

.circle-3 {
    width: 6rem;
    height: 6rem;
    background: rgba(44, 83, 100, 0.03);
    top: 60%;
    left: 10%;
    border: 1px solid rgba(44, 83, 100, 0.08);
}

@media (max-width: 768px) {
    .notice-banner {
        padding: 0.875rem 1rem;
    }

    .notice-banner__content {
        gap: 0.75rem;
    }

    .notice-banner__icon {
        width: 18px;
        height: 18px;
    }

    .notice-banner__text {
        font-size: 13px;
        line-height: 1.5;
    }

    .hero-logo {
        max-width: 16rem;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-disclaimer {
        padding: 1rem 1.25rem;
        margin: 1.25rem auto 1.25rem;
    }

    .hero-disclaimer p {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn {
        width: 100%;
        max-width: 20rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .notice-banner {
        padding: 0.75rem 0.875rem;
    }

    .notice-banner__text {
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 0.4rem 1rem;
    }
}
