:root {
    --bg-main: #fcfcfd;
    --brand-purple: #8513c2;
    --text-dark: #090909;
    --text-light: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --button-shadow: rgba(133, 19, 194, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dynamic Background */
.background-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #fff 0%, #f3f4f6 100%);
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.15;
    border-radius: 50%;
    animation: floating 30s infinite ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #8513c2;
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    top: 30%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes floating {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Card */
.content-wrapper {
    width: 100%;
    max-width: 540px;
    padding: 24px;
    perspective: 1000px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 56px 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    text-align: center;
    animation: cardEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEntry {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.card-header {
    margin-bottom: 32px;
}

.main-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    opacity: 0.5;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.status-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.main-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
    color: var(--text-dark);
}

.main-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
    opacity: 0.9;
}

.showcase-container {
    height: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.dynamic-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-purple);
}

.cursor {
    font-weight: 200;
    color: var(--brand-purple);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.highlight-domain {
    display: inline-block;
    padding: 0 6px;
    background: linear-gradient(120deg, rgba(133, 19, 194, 0.08), rgba(133, 19, 194, 0.03));
    color: var(--brand-purple);
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid rgba(133, 19, 194, 0.1);
}

/* Info Section */
.info-section {
    position: relative;
    padding-top: 32px;
}

.separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin-bottom: 32px;
}

.sub-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 8px;
}

.cert-digital {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.feature-item {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 10px 16px;
    background: rgba(133, 19, 194, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(133, 19, 194, 0.05);
    line-height: 1.4;
}

.feature-item strong {
    color: var(--brand-purple);
    font-weight: 700;
}

.marketing-blurb {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.actions-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.secondary-button {
    text-decoration: none;
    color: var(--brand-purple);
    border: 1.5px solid var(--brand-purple);
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: fit-content;
}

.secondary-button:hover {
    background-color: var(--brand-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px var(--button-shadow);
}

.support-button {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 4px 8px;
}

.support-button:hover {
    color: var(--text-dark);
}

.card-footer {
    margin-top: 48px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 640px) {
    .glass-card {
        padding: 48px 32px;
    }
    .main-title {
        font-size: 1.85rem;
    }
    .main-description {
        font-size: 1rem;
    }
}
