body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #000;
    color: #f5f5f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-button {
    background-color: #007aff;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0071e3;
}

.hero-gradient-text {
    background-image: linear-gradient(180deg, #ffffff, #007aff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title {
    font-size: 3rem; 
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #f5f5f7;
}

.feature-card {
    background-color: #1a1a1c;
    border-radius: 1.5rem; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-wrapper {
    border-radius: 1.5rem; 
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
input[type="text"],
input[type="email"],
select,
textarea {
    background-color: #1c1c1e;
    border: 1px solid #3a3a3c;
    border-radius: 12px;
    padding: 14px;
    color: #f5f5f7;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3);
}

/* Prose styles for privacy policy */
.prose {
    color: #a1a1a6;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #f5f5f7;
}