/* STORYLINER Landing Page - Pen Sketch Style */

@import url('pen-sketch.css');

/* Navigation */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding-top: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.landing-logo {
    height: 90px;
    width: auto;
    filter: grayscale(1) contrast(1.5);
    margin-top: 15px;
    margin-left: -20px;
}

.brand-logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: -1px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--ink-black);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: var(--sketch-transition);
}

.nav-link:hover {
    border-bottom: 2px solid var(--ink-black);
}

/* Hero Section */
.hero-neo {
    padding: 100px 20px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: var(--sketch-border);
    margin-bottom: 20px;
    background: var(--paper-white);
    box-shadow: 3px 3px 0 var(--ink-black);
}

.badge-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.hero-title span {
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        var(--sketch-medium) 3px,
        var(--sketch-medium) 6px
    );
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Courier New', monospace;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 20px;
    border: var(--sketch-border);
    background: var(--paper-white);
    box-shadow: 4px 4px 0 var(--ink-black);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
    font-family: 'Courier New', monospace;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-note {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    font-style: italic;
}

/* Visual container */
.visual-container {
    padding: 40px;
    border: var(--sketch-border-thick);
    background: var(--paper-white);
    box-shadow: 6px 6px 0 var(--ink-black);
    position: relative;
}

.visual-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.visual-item {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    border: var(--sketch-border);
    background: var(--paper-white);
}

.visual-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.visual-label {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.visual-arrow {
    font-size: 2rem;
    font-weight: bold;
}

/* Features Section */
.features-neo {
    padding: 80px 20px;
    border-top: var(--sketch-border-thick);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    position: relative;
}

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

.feature-card {
    padding: 30px;
    text-align: center;
    border: var(--sketch-border);
    background: var(--paper-white);
    box-shadow: 5px 5px 0 var(--ink-black);
    transition: var(--sketch-transition);
}

.feature-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--ink-black);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: var(--sketch-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.feature-card p {
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Process Section */
.process-neo {
    padding: 80px 20px;
    border-top: var(--sketch-border-thick);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 35px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: var(--ink-black);
    transform: skew(-0.5deg);
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: var(--paper-white);
    border: var(--sketch-border-thick);
    flex-shrink: 0;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 20px;
    border: var(--sketch-border);
    background: var(--paper-white);
    box-shadow: 4px 4px 0 var(--ink-black);
}

.step-content h3 {
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.step-content p {
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-neo {
    padding: 80px 20px;
    border-top: var(--sketch-border-thick);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    padding: 40px 30px;
    text-align: center;
    border: var(--sketch-border);
    background: var(--paper-white);
    box-shadow: 5px 5px 0 var(--ink-black);
    position: relative;
}

.price-card.featured {
    border: var(--sketch-border-thick);
    box-shadow: 8px 8px 0 var(--ink-black);
    transform: scale(1.05);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 20px;
    background: var(--ink-black);
    color: var(--paper-white);
    font-size: 0.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    font-family: 'Courier New', monospace;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    margin: 0 5px;
}

.period {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--ink-black);
}

.price-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-neo {
    padding: 100px 20px;
    border-top: var(--sketch-border-thick);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border: var(--sketch-border-thick);
    background: var(--paper-white);
    box-shadow: 8px 8px 0 var(--ink-black);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-family: 'Courier New', monospace;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.badge {
    padding: 8px 16px;
    border: var(--sketch-border);
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
.footer-neo {
    background: var(--ink-black);
    color: var(--paper-white);
    padding: 60px 20px 30px;
    border-top: 5px solid var(--ink-black);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.footer-brand p {
    font-family: 'Courier New', monospace;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.footer-column a {
    display: block;
    padding: 5px 0;
    color: var(--paper-white);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    transition: var(--sketch-transition);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 2px solid var(--paper-white);
    text-align: center;
    font-family: 'Courier New', monospace;
}

/* Modal */
.modal-neo {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.95);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 800px;
    padding: 40px;
    border: var(--sketch-border-thick);
    background: var(--paper-white);
    box-shadow: 10px 10px 0 var(--ink-black);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: var(--sketch-border);
    background: var(--paper-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sketch-transition);
}

.modal-close:hover {
    background: var(--ink-black);
    color: var(--paper-white);
}

/* Mobile menu */
.nav-mobile {
    display: none;
}

.neo-hamburger {
    background: var(--paper-white);
    border: var(--sketch-border);
    padding: 10px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.neo-hamburger span {
    width: 20px;
    height: 2px;
    background: var(--ink-black);
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--paper-white);
        border: var(--sketch-border);
        border-top: none;
        padding: 20px;
        flex-direction: column;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}