@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --cp-accent: rgba(40, 40, 40, 1.00);
    --cp-hilight-light: rgba(10, 180, 250, 1.00);
    --cp-hilight: rgba(20, 120, 220, 1.00);
    --cp-hilight-dark: rgba(10, 60, 110, 1.00);
    --cp-positive: rgba(30, 240, 120, 1.00);
    --cp-negative: rgba(240, 20, 70, 1.00);
    --cp-white: rgba(255, 255, 255, 1.00);
    --cp-black: rgba(0, 0, 0, 1.00);

    --cp-hilight-50: rgba(20, 120, 220, 0.05);
    --cp-hilight-100: rgba(20, 120, 220, 0.10);
    --cp-hilight-200: rgba(20, 120, 220, 0.20);
    --cp-hilight-500: rgba(20, 120, 220, 0.50);

    --cp-font: "Albert Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --cp-radius-pill: 100px;
    --cp-radius-card: 20px;
    --cp-radius-input: 50px;
    --cp-shadow-progressive:
        0 1px 1px 0 rgba(0, 0, 0, 0.025),
        0 2px 2px 0 rgba(0, 0, 0, 0.025),
        0 4px 5px 0 rgba(0, 0, 0, 0.025),
        0 8px 8px 0 rgba(0, 0, 0, 0.025),
        0 16px 16px 0 rgba(0, 0, 0, 0.025),
        0 32px 32px 0 rgba(0, 0, 0, 0.025),
        0 64px 64px 0 rgba(0, 0, 0, 0.025);
    --cp-shadow-blue:
        0 1px 1px 0 rgba(20, 120, 220, 0.15),
        0 2px 2px 0 rgba(20, 120, 220, 0.15),
        0 4px 5px 0 rgba(20, 120, 220, 0.15),
        0 8px 8px 0 rgba(20, 120, 220, 0.15),
        0 16px 16px 0 rgba(20, 120, 220, 0.15),
        0 32px 32px 0 rgba(20, 120, 220, 0.15),
        0 64px 64px 0 rgba(20, 120, 220, 0.15);
}

.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--cp-radius-pill);
    padding: 14px 28px;
    font-family: var(--cp-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cp-accent);
    text-align: center;
    text-decoration: none;
    border: none;
    box-shadow: var(--cp-shadow-progressive);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.cp-btn:hover {
    color: var(--cp-hilight);
    transform: translateY(-1px);
    box-shadow:
        0 1px 1px 0 rgba(0, 0, 0, 0.05),
        0 2px 2px 0 rgba(0, 0, 0, 0.05),
        0 4px 5px 0 rgba(0, 0, 0, 0.05),
        0 8px 8px 0 rgba(0, 0, 0, 0.05),
        0 16px 16px 0 rgba(0, 0, 0, 0.05),
        0 32px 32px 0 rgba(0, 0, 0, 0.05),
        0 64px 64px 0 rgba(0, 0, 0, 0.05);
}
.cp-btn:after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--cp-white);
    opacity: 0.25;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(100%, -50%) skew(-35deg);
    transition: all 0.5s;
}
.cp-btn:hover:after {
    transform: translate(-100%, -50%) skew(-35deg);
    opacity: 0.25;
}

.cp-btn-primary {
    background: var(--cp-hilight);
    color: var(--cp-white);
    box-shadow: var(--cp-shadow-blue);
}
.cp-btn-primary:hover {
    color: var(--cp-white);
    box-shadow:
        0 1px 1px 0 rgba(20, 120, 220, 0.30),
        0 2px 2px 0 rgba(20, 120, 220, 0.30),
        0 4px 5px 0 rgba(20, 120, 220, 0.30),
        0 8px 8px 0 rgba(20, 120, 220, 0.30),
        0 16px 16px 0 rgba(20, 120, 220, 0.30),
        0 32px 32px 0 rgba(20, 120, 220, 0.30),
        0 64px 64px 0 rgba(20, 120, 220, 0.05);
}

.cp-btn-white {
    background: var(--cp-white);
    color: var(--cp-hilight);
}
.cp-btn-white:hover {
    background: rgba(255, 255, 255, 0.85);
    color: var(--cp-hilight);
}

.cp-btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}
.cp-btn-md {
    padding: 12px 24px;
    font-size: 0.9375rem;
}

.cp-input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: var(--cp-radius-input);
    font-family: var(--cp-font);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cp-accent);
    background: var(--cp-white);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: all 0.3s;
}
.cp-input:hover {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.cp-input:focus {
    box-shadow: inset 0 0 0 2px var(--cp-hilight);
}
.cp-input::placeholder {
    color: rgba(40, 40, 40, 0.4);
    font-weight: 400;
}

.cp-card {
    background: var(--cp-white);
    border-radius: var(--cp-radius-card);
    box-shadow: var(--cp-shadow-progressive);
    padding: 2rem;
}

.cp-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--cp-radius-card);
}

.cp-link {
    color: var(--cp-hilight);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}
.cp-link:hover {
    opacity: 0.8;
}

.cp-text-gradient {
    background: linear-gradient(135deg, var(--cp-hilight-light), var(--cp-hilight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.cp-backdrop::before,
.cp-backdrop::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
}
.cp-backdrop::before {
    width: 600px;
    height: 600px;
    background: var(--cp-hilight);
    opacity: 0.15;
    top: -200px;
    right: -100px;
}
.cp-backdrop::after {
    width: 500px;
    height: 500px;
    background: var(--cp-hilight-light);
    opacity: 0.10;
    bottom: -150px;
    left: -100px;
}

.cp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.cp-logo img {
    height: 32px;
}
.cp-logo span {
    font-family: var(--cp-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cp-accent);
}
.cp-logo.light span {
    color: var(--cp-white);
}
