/* content of style.css */
:root {
    /* Colors */
    --color-primary: #6366f1; /* Indigo 500 */
    --color-primary-dark: #4f46e5; /* Indigo 600 */
    --color-accent: #8b5cf6; /* Violet 500 */
    --color-text-main: #0f172a; /* Slate 900 */
    --color-text-muted: #475569; /* Slate 600 */
    --color-bg: #ffffff;
    --color-bg-subtle: #f8fafc;
    --color-border: #e2e8f0;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --container-max-width: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    
    /* Radii */
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.badge-coming-soon {
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem; /* Space for fixed header */
    padding-bottom: 5rem;
    overflow: hidden;
    background: linear-gradient(to bottom, #fdfbff, #ffffff);
}

.hero-background-mesh {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: 
        radial-gradient(at 80% 0%, hsla(250,90%,96%,1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(210,90%,96%,1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, hsla(280,90%,96%,1) 0px, transparent 50%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media(min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media(min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.text-gradient {
    color: transparent;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* Waitlist Form Replacement */
.coming-soon-container {
    padding: 1.5rem 0;
}

.badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.025em;
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-weight: 500;
}

.free-note {
    font-size: 0.8rem;
    color: var(--color-primary); /* Highlight free aspect slightly */
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    /* border: 1px solid rgba(255,255,255,0.5); */
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--color-bg-subtle);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    text-align: center;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media(min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    padding: 2rem;
}

.step-card h3 {
    margin-top: 1rem;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-card p {
    color: var(--color-text-muted);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--color-bg-subtle);
}

.faq-container {
    max-width: 900px !important;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Details Section */
.details {
    padding: 5rem 0;
    text-align: center;
}

.details-content {
    max-width: 700px;
    margin: 0 auto;
}

.details-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.details-content p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    background-color: white; 
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo img {
    height: 32px; /* Enforce logo size */
    width: auto;
    display: block;
}

@media(min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
    }
}

.copyright {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* Contact Us Section */
.contact-us {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.contact-card {
    background: var(--color-bg-subtle);
    padding: 3rem;
    border-radius: 1rem;
    display: inline-block;
    max-width: 500px;
    width: 100%;
    text-align: center; /* Ensure internal text is centered */
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-email {
    display: block;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 600;
    margin: 1rem 0;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-subtext {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Legal Pages Styling */
.legal-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    background-color: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.legal-container .last-updated {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container section {
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.legal-container h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.legal-container p, .legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1rem;
}

.legal-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

/* Alert Box Styles */
.alert-box {
    background-color: var(--color-bg-subtle);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.alert-box h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-top: 0;
    font-size: 1.25rem;
}

/* Table Styles - Scoped to legal pages */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.legal-container th, .legal-container td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.legal-container th {
    background-color: var(--color-bg-subtle);
    font-weight: 600;
    color: var(--color-text-main);
}

.legal-container tr:last-child td {
    border-bottom: none;
}
