:root {
    --vest-blue: #0F172A;
    --vest-cyan: #0891B2;
    --vest-orange: #F97316;
    --vest-amber: #FCD34D;
    --vest-gray: #64748B;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, var(--vest-cyan), var(--vest-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--vest-blue) 0%, var(--vest-cyan) 50%, var(--vest-orange) 100%);
}

/* Badge in Hero */
.badge-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.badge-glow {
    width: 8px;
    height: 8px;
    background-color: #4ADE80; /* green-400 */
    border-radius: 50%;
    margin-right: 12px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.125rem; /* text-lg */
}

.btn-primary {
    background: var(--vest-cyan);
    color: white;
}

.btn-primary:hover {
    background: #065f7c; /* Darker cyan */
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--vest-blue);
}

.btn-secondary {
    background: #f1f5f9;
    color: var(--vest-blue);
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.contact-name {
    margin-bottom: 16px;
}

/* Platform Visual */
.platform-visual {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    max-width: 512px; /* max-w-lg */
    width: 100%;
}

.hero-cta-link {
    width: 100%;
    min-height: 64px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero-cta-link:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    width: 90%;
    max-width: 512px;
    position: relative;
    transform: scale(0.95);
    animation: scaleIn 0.3s forwards;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--vest-gray);
}

/* Form Styles */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--vest-blue);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-input:focus {
    outline: none;
    border-color: var(--vest-cyan);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.form-helper {
    font-size: 0.875rem;
    margin-top: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-option input {
    width: 16px;
    height: 16px;
    accent-color: #ffffff;
}

.category-option:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

/* Waitlist Form */
.waitlist-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    color: var(--vest-blue);
}

.waitlist-header {
    text-align: left;
    margin-bottom: 20px;
}

.waitlist-header h3 {
    color: var(--vest-blue);
    margin-bottom: 6px;
}

.waitlist-header p {
    color: #64748b;
}

.waitlist-form .form-label {
    color: var(--vest-blue);
}

.waitlist-form .form-input {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--vest-blue);
}

.waitlist-form .form-input::placeholder {
    color: #94a3b8;
}

.consent-stack {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.consent-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.consent-option input {
    margin-top: 3px;
    accent-color: var(--vest-cyan);
}

.consent-link {
    color: var(--vest-cyan);
    text-decoration: underline;
}

.waitlist-form .form-helper {
    color: #64748b;
}

/* Privacy Modal */
.privacy-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 60;
}

.privacy-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
}

.privacy-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    max-width: 560px;
    width: calc(100% - 32px);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
    z-index: 1;
}

.privacy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #475569;
    cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    padding: 16px 20px;
    z-index: 70;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #475569;
    font-size: 0.9rem;
}

.cookie-banner.is-hidden {
    display: none;
}

@media (min-width: 768px) {
    .cookie-banner {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .cookie-banner__content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* Toast Styles */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #10B981;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(calc(100% + 20px));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateX(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 30px rgba(74, 222, 128, 0.9); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.focus-visible\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

@media (max-width: 768px) {
    .landing-page .badge-container {
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .landing-page .badge-text {
        font-size: 0.75rem;
    }

    .landing-page .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-page .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .landing-page .platform-visual {
        padding: 20px;
        max-width: 100%;
    }

    .landing-page .waitlist-form {
        padding: 20px;
    }

    .landing-page .privacy-modal-content {
        padding: 20px;
        max-height: 85vh;
    }
}
