/* Premium Landing Page Styles for Beaver */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --text-primary: #4B3621;
    /* Cafe Noir */
    --text-secondary: #6B5B4A;
    /* Muted Cafe Noir */
    --accent-primary: #43B3AE;
    /* Verdigris */
    --accent-secondary: #2E7D32;
    /* Deep Emerald */
    --accent-soft: #F0DC82;
    /* Buff */
    --bg-warm: #FAF9F6;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --card-shadow: 0 20px 40px rgba(75, 54, 33, 0.12);
}

.landing-page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-warm);
    background-image:
        radial-gradient(at 0% 0%, rgba(67, 179, 174, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(240, 220, 130, 0.12) 0px, transparent 50%);
}

/* Typography Overrides */
.landing-page-wrapper h1,
.landing-page-wrapper h2,
.landing-page-wrapper h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0;
}

/* Hero Section */
.hero-section {
    padding: 120px 24px 80px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1A202C 0%, #4B3621 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-image-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.landing-btn {
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.landing-btn.primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #379c98 100%);
    color: white;
    box-shadow: 0 10px 20px -10px rgba(67, 179, 174, 0.5);
}

.landing-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(67, 179, 174, 0.6);
}

.landing-btn.secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.landing-btn.secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Features Section */
.value-prop-section {
    padding: 120px 24px;
    background: #fff;
    border-top: 1px solid rgba(75, 54, 33, 0.05);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(67, 179, 174, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-primary);
}

.feature-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Pricing Section - Glassmorphism */
.pricing-section {
    padding: 120px 24px;
    background: #4B3621;
    /* Back to Cafe Noir for premium contrast */
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    filter: blur(150px);
    opacity: 0.1;
    top: -300px;
    right: -200px;
}

.pricing-card {
    margin: 0 auto;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 60px 48px;
    color: white;
    text-align: center;
}

.pricing-price {
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Outfit';
    color: white;
    line-height: 1;
}

.pricing-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.pricing-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.pricing-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-primary);
    margin-right: 16px;
}

/* Parner Deal Badge */
.partner-deal {
    background: rgba(240, 220, 130, 0.1);
    padding: 20px;
    border-radius: 16px;
    border: 1px dashed rgba(240, 220, 130, 0.3);
    color: #F0DC82;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 24px;
}

/* Privacy/Terms Footer */
.landing-page-wrapper footer {
    padding: 60px 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(75, 54, 33, 0.08);
    background: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image-container,
.feature-card,
.pricing-card {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-image-container {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 80px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

/* Connectivity Section */
.connectivity-section {
    padding: 40px 24px;
    text-align: center;
    background: rgba(240, 220, 130, 0.08);
    border-top: 1px solid rgba(75, 54, 33, 0.05);
    border-bottom: 1px solid rgba(75, 54, 33, 0.05);
}

.connectivity-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.provider-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.provider-logo-group.coming-soon {
    opacity: 0.5;
}

.provider-icon-small {
    width: 20px;
    height: 20px;
}

.provider-icon-grayscale {
    width: 20px;
    height: 20px;
    filter: grayscale(100%);
}

/* Pricing Overrides */
.pricing-title {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.pricing-subtext {
    display: block;
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Landing Footer */
.landing-footer {
    padding: 60px 24px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(75, 54, 33, 0.05);
    background: #fff;
}

.footer-links {
    margin-bottom: 24px;
}

.footer-link {
    color: var(--accent-primary);
    margin: 0 16px;
    text-decoration: none;
    font-weight: 500;
}

/* Authenticated User Landing */
.auth-landing-intro {
    margin-top: 40px;
    text-align: center;
}

.auth-landing-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.auth-landing-action {
    margin-top: 30px;
    display: inline-block;
}

.cta-button-large {
    font-size: 18px;
    padding: 12px 24px;
}

/* Utility */
.hero-benefit {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.hero-benefit svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Legal Page Specific Overrides */
.legal-page-wrapper {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--cafe-noir);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--cafe-noir);
}

.legal-content p,
.legal-content ul {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.legal-nav {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-nav a {
    color: var(--verdigris);
    text-decoration: none;
    font-weight: 600;
}

.print-btn {
    background: var(--verdigris);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.print-btn:hover {
    opacity: 0.9;
}

@media print {

    .legal-nav,
    .site-footer,
    .feedback-tab {
        display: none !important;
    }

    .legal-page-wrapper {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
}

.footer-custom {
    padding: 40px 0;
    text-align: center;
    color: var(--light-text-color);
}