/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    object-fit: contain;
    height: 40px;
    width: auto;
}

.download-btn {
    padding: 0.75rem 1.75rem;
    background-color: #2563eb;
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.download-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.4), rgba(255, 255, 255, 1), rgba(236, 254, 255, 0.3));
    z-index: -3;
}

.hero-bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(219, 234, 254, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    transform: translateY(-50%) translateX(50%);
    z-index: -2;
}

.hero-bg-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(207, 250, 254, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    transform: translateY(50%) translateX(-50%);
    z-index: -2;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
}

.badge-dot {
    width: 0.625rem;
    height: 0.625rem;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a8a;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

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

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

.gradient-text {
    background: linear-gradient(to right, #2563eb, #1d4ed8, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 42rem;
    font-weight: 400;
}

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

.app-store-link {
    padding-top: 1rem;
}

.app-store-badge {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 15px -3px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s;
    display: inline-block;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
        margin: 0;
    }
}

.app-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: #ffffff;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-header {
    text-align: center;
    margin-bottom: 6rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

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

.features-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 400;
}

.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 {
    position: relative;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid;
    transition: all 0.3s;
}

.feature-card-amber {
    background: linear-gradient(to bottom right, #ffffff, rgba(255, 251, 235, 0.3));
    border-color: #fef3c7;
}

.feature-card-amber:hover {
    border-color: #fcd34d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-blue {
    background: linear-gradient(to bottom right, #ffffff, rgba(239, 246, 255, 0.3));
    border-color: #dbeafe;
}

.feature-card-blue:hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-purple {
    background: linear-gradient(to bottom right, #ffffff, rgba(250, 245, 255, 0.3));
    border-color: #f3e8ff;
}

.feature-card-purple:hover {
    border-color: #c084fc;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-indigo {
    background: linear-gradient(to bottom right, #ffffff, rgba(238, 242, 255, 0.3));
    border-color: #e0e7ff;
}

.feature-card-indigo:hover {
    border-color: #818cf8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-emerald {
    background: linear-gradient(to bottom right, #ffffff, rgba(236, 253, 245, 0.3));
    border-color: #d1fae5;
}

.feature-card-emerald:hover {
    border-color: #6ee7b7;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-gray {
    background: linear-gradient(to bottom right, #ffffff, rgba(249, 250, 251, 0.5));
    border-color: #f3f4f6;
}

.feature-card-gray:hover {
    border-color: #d1d5db;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pro-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: linear-gradient(to right, #4f46e5, #9333ea);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
}

.feature-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-radius: 1.5rem;
    filter: blur(60px);
}

.feature-glow-amber {
    background: linear-gradient(to bottom right, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
}

.feature-glow-blue {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.feature-glow-purple {
    background: linear-gradient(to bottom right, rgba(192, 132, 252, 0.1), rgba(236, 72, 153, 0.1));
}

.feature-glow-indigo {
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.feature-glow-emerald {
    background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
}

.feature-glow-gray {
    background: linear-gradient(to bottom right, rgba(107, 114, 128, 0.1), rgba(71, 85, 105, 0.1));
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-amber {
    background: linear-gradient(to bottom right, #fbbf24, #f97316);
    box-shadow: 0 20px 25px -5px rgba(251, 191, 36, 0.3);
}

.feature-icon-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3);
}

.feature-icon-purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
    box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.3);
}

.feature-icon-indigo {
    background: linear-gradient(to bottom right, #6366f1, #9333ea);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.3);
}

.feature-icon-emerald {
    background: linear-gradient(to bottom right, #10b981, #14b8a6);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.3);
}

.feature-icon-gray {
    background: linear-gradient(to bottom right, #4b5563, #475569);
    box-shadow: 0 20px 25px -5px rgba(75, 85, 99, 0.3);
}

.feature-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.025em;
}

.feature-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    text-align: center;
    margin-bottom: 0.75rem;
}

.feature-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin: 0 auto;
}

.feature-badge-amber {
    color: #92400e;
    background-color: #fffbeb;
}

.feature-badge-blue {
    color: #1e40af;
    background-color: #eff6ff;
}

.feature-badge-purple {
    color: #6b21a8;
    background-color: #faf5ff;
}

.feature-badge-indigo {
    color: #4338ca;
    background-color: #eef2ff;
}

.feature-badge-emerald {
    color: #065f46;
    background-color: #ecfdf5;
}

.feature-badge-gray {
    color: #374151;
    background-color: #f9fafb;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(to bottom right, #2563eb, #1d4ed8, #0891b2);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(circle at 3px 3px, white 1.5px, transparent 0);
    background-size: 50px 50px;
}

.cta-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

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

@media (min-width: 1024px) {
    .cta-title {
        font-size: 4.5rem;
    }
}

.cta-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.875rem;
    }
}

.cta-link {
    display: inline-block;
    transition: transform 0.2s;
}

.cta-link:hover {
    transform: scale(1.05);
}

.cta-badge {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
}

/* Footer */
.footer {
    background-color: #030712;
    color: white;
    padding: 5rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 2rem;
    }
}

.footer-left {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-left {
        text-align: left;
    }
}

.footer-logo {
    object-fit: contain;
    height: 35px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #9ca3af;
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    font-size: 1rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 4rem;
    padding-top: 2.5rem;
    text-align: center;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Coming Soon Section */
.coming-soon {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.coming-soon-bg-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.4), rgba(255, 255, 255, 1), rgba(236, 254, 255, 0.3));
    z-index: -3;
}

.coming-soon-bg-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(219, 234, 254, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    transform: translateY(-50%) translateX(50%);
    z-index: -2;
}

.coming-soon-bg-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: rgba(207, 250, 254, 0.3);
    border-radius: 50%;
    filter: blur(80px);
    transform: translateY(50%) translateX(-50%);
    z-index: -2;
}

.coming-soon-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.coming-soon-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .coming-soon-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .coming-soon-title {
        font-size: 5rem;
    }
}

.coming-soon-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
    font-weight: 400;
}

@media (min-width: 768px) {
    .coming-soon-description {
        font-size: 1.5rem;
    }
}

/* Email Signup */
.email-signup {
    width: 100%;
    max-width: 32rem;
    margin-top: 1rem;
}

.signup-form {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

@media (min-width: 640px) {
    .signup-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    background-color: white;
    color: #111827;
    transition: all 0.2s;
}

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

.email-input::placeholder {
    color: #9ca3af;
}

.signup-btn {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.signup-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.signup-btn:active {
    transform: scale(0.98);
}

.signup-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    min-height: 1.25rem;
}

/* Coming Soon Features */
.coming-soon-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .feature-item {
        font-size: 1rem;
    }
}

.feature-icon-mini {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.25rem;
    }
    
    .features-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-description {
        font-size: 1.125rem;
    }
    
    .coming-soon {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

/* Legal Pages Styles */
.legal-main {
    min-height: 100vh;
    background-color: #ffffff;
    padding-top: 8rem;
    padding-bottom: 3rem;
}

.legal-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

@media (min-width: 768px) {
    .legal-container {
        padding: 3rem;
    }
}

.legal-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.legal-date {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.legal-content {
    max-width: none;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 0;
}

.legal-subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-text {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.legal-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-list li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.legal-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Responsive adjustments for legal pages */
@media (max-width: 640px) {
    .legal-main {
        padding-top: 7rem;
    }
    
    .legal-container {
        padding: 1.5rem;
    }
    
    .legal-title {
        font-size: 1.875rem;
    }
    
    .legal-section-title {
        font-size: 1.25rem;
    }
}
