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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-content {
    max-width: 840px;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.hero,
.product-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 5rem 0;
}

.hero {
    text-align: center;
}

.hero h1,
.product-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
}

.description {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.eyebrow.dark {
    color: #2563eb;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: start;
}

.product-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.product-panel h2 {
    text-align: left;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-panel ul {
    margin-left: 1.25rem;
}

.product-panel li,
.product-panel p {
    color: rgba(255, 255, 255, 0.92);
}

.button-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
}

.primary-button {
    background: #fff;
    color: #1e40af;
}

.primary-button:hover {
    transform: translateY(-1px);
    background: #dbeafe;
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

.secondary-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.dark-button {
    background: #2563eb;
    color: #fff;
}

.dark-button:hover {
    background: #1e40af;
}

.dark-outline {
    border-color: #2563eb;
    color: #2563eb;
}

.dark-outline:hover {
    background: rgba(37, 99, 235, 0.08);
}

.centered-cta {
    text-align: center;
    margin-top: 2rem;
}

.launch-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.92);
}

section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #fff;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.features,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature,
.content-card,
.faq-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.feature:hover,
.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.feature h3,
.content-card h3,
.faq-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.feature p,
.content-card p,
.faq-item p {
    color: #64748b;
}

.feature ul,
.content-card ul,
.faq-item ul,
.product-content ul {
    margin: 1rem 0 0 1.5rem;
}

.feature li,
.content-card li,
.faq-item li,
.product-content li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.featured-app-card {
    text-align: left;
    height: 100%;
}

.inline-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.inline-link:hover {
    text-decoration: underline;
}

.product-content {
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.privacy-content {
    background-color: #fff;
    padding: 4rem 0;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: left;
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.privacy-content p {
    margin-bottom: 1rem;
    color: #64748b;
}

.privacy-content strong {
    color: #1e293b;
}

.privacy-content a {
    color: #2563eb;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.recaptcha-warning {
    padding: 1rem;
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.submit-btn {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #1e40af;
}

.submit-btn:active {
    transform: translateY(1px);
}

.submit-btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-message {
    max-width: 600px;
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.turnstile-slot {
    min-height: 65px;
}

footer {
    background-color: #1e293b;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

footer a {
    color: #60a5fa;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .product-hero-grid,
    .two-up {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    nav .container {
        flex-direction: column;
    }

    .hero h1,
    .product-hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .features,
    .feature-grid,
    .app-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .button-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
