
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #00aee5;
    --primary-dark: #003a4d;
    --secondary: #00e5aa;
    --secondary-dark: #004836;
    --gray-dark: #7c7c7c;
    --gray-light: #f6f6f6;
}

html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    color: var(--primary-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
}
.bg-blob-1 {
    width: 560px; height: 560px;
    background: var(--primary);
    top: -160px; left: -160px;
    animation: float1 9s ease-in-out infinite;
}
.bg-blob-2 {
    width: 380px; height: 380px;
    background: var(--secondary);
    bottom: -80px; right: -80px;
    animation: float2 11s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(28px, 36px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-22px, -28px); }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, #00aee518 1px, transparent 1px);
    background-size: 38px 38px;
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    max-width: 680px;
    width: 100%;
}

.logo-wrap {
    margin-bottom: 52px;
    animation: fadeUp 0.8s cubic-bezier(.22,1,.36,1) both;
}
.logo-wrap svg {
    width: auto;
    height: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #edf9ff;
    border: 1px solid #b3e8f9;
    color: var(--primary-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.08s cubic-bezier(.22,1,.36,1) both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.65); }
}

h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(52px, 9vw, 92px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    margin-bottom: 10px;
    animation: fadeUp 0.8s 0.15s cubic-bezier(.22,1,.36,1) both;
}

h1 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 300;
}

.subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(15px, 2.2vw, 18px);
    color: var(--gray-dark);
    font-weight: 400;
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto 48px;
    animation: fadeUp 0.8s 0.22s cubic-bezier(.22,1,.36,1) both;
}

.stats {
    display: flex;
    gap: 1px;
    background: #deedf5;
    border: 1px solid #deedf5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 52px;
    animation: fadeUp 0.8s 0.30s cubic-bezier(.22,1,.36,1) both;
}

.stat {
    flex: 1;
    padding: 22px 24px;
    background: #fff;
}
.stat:not(:last-child) {
    border-right: 1px solid #deedf5;
}

.stat-value {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 12px;
    color: var(--gray-dark);
    font-weight: 400;
    line-height: 1.4;
}

.notify-wrap {
    width: 100%;
    max-width: 420px;
    animation: fadeUp 0.8s 0.38s cubic-bezier(.22,1,.36,1) both;
    margin-bottom: 36px;
}

.notify-label {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.notify-form {
    display: flex;
    background: var(--gray-light);
    border: 1.5px solid #dce8ef;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px #00aee514;
}

.notify-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--primary-dark);
    outline: none;
}

.notify-form input::placeholder {
    color: #a8c4d0;
}

.notify-form button {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.15s;
}

.notify-form button:hover {
    background: var(--primary);
    transform: scale(0.98);
}

.success-msg {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #e4fdf5;
    border: 1.5px solid #7be8c8;
    border-radius: 14px;
    color: var(--secondary-dark);
    font-size: 14px;
    font-weight: 500;
}

.contact {
    font-size: 13px;
    color: #aaa;
    animation: fadeUp 0.8s 0.46s cubic-bezier(.22,1,.36,1) both;
}
.contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.contact a:hover { text-decoration: underline; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
    .stats { flex-direction: column; gap: 0; background: #fff; border: 1px solid #deedf5; }
    .stat { border-right: none !important; }
    .stat:not(:last-child) { border-bottom: 1px solid #deedf5; }
}
