/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-navy: #0F172A;
    --lavender-purple: #967CC4;
    --sky-blue: #55B7E3;
    --amber-yellow: #FDC752;
    --white: #FFFFFF;
    --light-gray: #F1F5F9;
    --medium-gray: #94A3B8;
    --card-bg: #1E293B;
    --border-color: #334155;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--deep-navy);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    z-index: 50;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sky-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: var(--lavender-purple);
}

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

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sky-blue);
}

.nav-cta {
    background: var(--lavender-purple);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(85, 183, 227, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--lavender-purple);
    color: var(--white);
    transition: all 0.18s ease-out;
}

.btn-primary:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 154, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--sky-blue);
}

.btn-secondary:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 5rem;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(91, 154, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(85, 183, 227, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(150, 124, 196, 0.07) 0%, transparent 50%);
    animation: heroGradient 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroGradient {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(2%, -2%) rotate(1deg);
    }
    66% {
        transform: translate(-2%, 2%) rotate(-1deg);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 550px;
    width: 100%;
    margin: 2rem auto 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(85, 183, 227, 0.2);
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.image-placeholder {
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
}

.image-placeholder p {
    color: var(--medium-gray);
    margin: 0.5rem 0;
}

.placeholder-size {
    font-size: 0.9rem;
    color: var(--border-color);
}

.hero-note {
    color: var(--medium-gray);
    font-size: 1rem;
    margin-top: 2rem;
}

.hero-note a {
    color: var(--sky-blue);
    text-decoration: underline;
}

/* ===== EARLY ACCESS EMAIL CAPTURE ===== */
.early-access {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(91, 154, 255, 0.08) 0%, rgba(150, 124, 196, 0.08) 100%);
    text-align: center;
}

.early-access h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.early-access-subtitle {
    font-size: 1.35rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.form-container iframe {
    width: 100%;
    max-width: 640px;
    height: 542px;
    border: none;
    border-radius: 8px;
}

/* ===== PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(150, 124, 196, 0.1) 0%, rgba(85, 183, 227, 0.1) 100%);
}

.problem-solution .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.problem, .solution {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease-out;
}

.problem:hover, .solution:hover {
    border-color: rgba(91, 154, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.15);
}

.problem h3, .solution h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
}

.problem p, .solution p {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 2rem;
}

.features h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 154, 255, 0.5);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    max-width: 100%;
    height: auto;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(85, 183, 227, 0.05) 0%, rgba(150, 124, 196, 0.05) 100%);
}

.how-it-works h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease-out;
}

.step:hover {
    border-color: rgba(91, 154, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--lavender-purple) 0%, var(--sky-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.step p {
    color: var(--medium-gray);
    font-size: 1.05rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 6rem 2rem;
}

.pricing h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.pricing-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s ease-out;
}

.pricing-card.subscription {
    background: linear-gradient(135deg, rgba(150, 124, 196, 0.1) 0%, rgba(85, 183, 227, 0.1) 100%);
}

.pricing-card.primary {
    background: linear-gradient(135deg, rgba(150, 124, 196, 0.1) 0%, rgba(85, 183, 227, 0.1) 100%);
}

.pricing-card:hover {
    border-color: rgba(91, 154, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.15);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--sky-blue);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1.5rem;
    color: var(--medium-gray);
}

.pricing-card p {
    color: var(--medium-gray);
    margin: 0.5rem 0;
    font-size: 1.05rem;
}

.cost-table {
    width: 100%;
    margin-top: 1rem;
}

.cost-table tr {
    border-bottom: 1px solid var(--border-color);
}

.cost-table td {
    padding: 1rem;
    color: var(--medium-gray);
}

.cost-table td:first-child {
    text-align: left;
    color: var(--white);
}

.cost-table td:last-child {
    text-align: right;
    color: var(--sky-blue);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid transparent;
    max-width: 700px;
    margin: 0 auto 3rem;
    transition: all 0.3s ease-out;
}

.pricing-note:hover {
    border-color: rgba(91, 154, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.15);
}

.pricing-note p {
    color: var(--medium-gray);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.pricing-note strong {
    color: var(--amber-yellow);
}

/* ===== QUICK RESOURCES ===== */
.quick-resources {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(150, 124, 196, 0.05) 0%, rgba(85, 183, 227, 0.05) 100%);
}

.quick-resources h2 {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(91, 154, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease-out;
    display: block;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(91, 154, 255, 0.2);
}

.resource-card h3 {
    font-size: 1.35rem;
    color: var(--sky-blue);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--medium-gray);
}

/* ===== FOOTER ===== */
footer {
    background: rgba(10, 15, 26, 0.8);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.3s;
}

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

.divider {
    color: var(--border-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--medium-gray);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    color: var(--lavender-purple);
    border-color: var(--lavender-purple);
    transform: translateY(-3px);
}

.footer-credit {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO FADE-UP ANIMATIONS ===== */
.hero-fade-1,
.hero-fade-2,
.hero-fade-3 {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-duration: 0.8s;
}

.hero-fade-1 {
    animation-name: heroFadeUp;
    animation-delay: 0s;
}

.hero-fade-2 {
    animation-name: heroFadeUp;
    animation-delay: 0.15s;
}

.hero-fade-3 {
    animation-name: heroFadeUp;
    animation-delay: 0.3s;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.35rem;
        font-size: 0.8rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        margin: 1.5rem auto;
        max-width: 100%;
    }

    .hero-note {
        font-size: 0.9rem;
        margin-top: 1rem;
    }

    .early-access {
        padding: 3rem 1.5rem;
    }

    .early-access h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .early-access-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .form-container {
        padding: 1rem;
    }

    .form-container iframe {
        height: 600px;
    }

    .features,
    .how-it-works,
    .pricing,
    .quick-resources {
        padding: 3rem 1.5rem;
    }

    .features h2,
    .how-it-works h2,
    .pricing h2,
    .quick-resources h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .features-grid,
    .steps,
    .pricing-breakdown,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-solution {
        padding: 3rem 1.5rem;
    }

    .problem-solution .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem, .solution {
        padding: 2rem;
    }

    .problem h3, .solution h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .feature-card,
    .step,
    .pricing-card,
    .resource-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-links a {
        margin: 0.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.4rem 0;
    }

    .nav-container {
        padding: 0 0.75rem;
        gap: 0.4rem;
    }

    .nav-links {
        gap: 0.25rem;
        font-size: 0.75rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .hero {
        padding: 1rem 0.75rem;
        margin-top: 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.25;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .hero-ctas {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-image {
        margin: 1rem auto;
        max-width: 100%;
    }

    .hero-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-cta {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .early-access {
        padding: 2rem 1rem;
    }

    .early-access h2 {
        font-size: 1.5rem;
    }

    .early-access-subtitle {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 0.75rem;
    }

    .features,
    .how-it-works,
    .pricing,
    .quick-resources,
    .problem-solution {
        padding: 2rem 1rem;
    }

    .features h2,
    .how-it-works h2,
    .pricing h2,
    .quick-resources h2 {
        font-size: 1.5rem;
    }

    .feature-card h3,
    .step h3 {
        font-size: 1.2rem;
    }

    .problem h3, .solution h3 {
        font-size: 1.35rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .pricing-note {
        padding: 1.5rem;
    }

    footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 320px) {
    .navbar {
        padding: 0.3rem 0;
    }

    .nav-container {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }

    .nav-links {
        gap: 0.2rem;
        font-size: 0.7rem;
    }

    .logo {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
    }

    .hero {
        padding: 0.75rem 0.5rem;
        margin-top: 0.5rem;
    }

    .hero h1 {
        font-size: 1.2rem !important;
        margin-bottom: 0.4rem;
        line-height: 1.2;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .hero-ctas {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-image {
        margin: 0.75rem auto;
    }

    .hero-note {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .early-access h2 {
        font-size: 1.3rem;
    }

    .early-access-subtitle {
        font-size: 0.85rem;
    }

    .form-container {
        padding: 0.5rem;
    }

    .features h2,
    .how-it-works h2,
    .pricing h2,
    .quick-resources h2 {
        font-size: 1.3rem;
    }

    .container {
        padding: 0 0.75rem;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== SELECTION COLORS ===== */
::selection {
    background: var(--lavender-purple);
    color: var(--white);
}
