* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #1A1A1A;
    --bg-card: #252525;
    --bg-card-hover: #2a2a2a;
    --text-primary: #FFFFFF;
    --text-muted: #E2DED6;
    --accent: #FF4B3A;
    --accent-hover: #ff5c4d;
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --thoughtful: #5C7A6B;
    --border-dark: #333;
    --border-gold: rgba(212, 175, 55, 0.5);
    /* Features title highlight: reddish-orange and orange */
    --highlight-fun: #E05A38;
    --highlight-way: #FF8C42;
}

html {
    font-size: 18px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

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

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 24px;
}

/* Navigation */
.navbar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    justify-self: start;
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    line-height: 0;
    justify-self: center;
}

.logo-img {
    height: 120px;
    width: auto;
    max-height: 140px;
    object-fit: contain;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

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

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


.nav-link-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link-btn:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-dark);
}

.btn-outline:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero */
.hero {
    padding: 4rem 0 5rem;
    background: var(--bg-dark);
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-works-with {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-works-more {
    text-decoration: underline;
}

.hero-platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
    margin-bottom: 2rem;
}

.platform-logo {
    display: block;
    color: #fff;
    fill: currentColor;
}

.platform-netflix {
    height: 1rem;
    width: auto;
}

.platform-youtube {
    height: 1.125rem;
    width: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
}

.hero-platforms {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-browser-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.browser-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: var(--bg-card);
    border-radius: 0.25rem;
}

.hero-video {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    background: #0d0d0d;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    margin-bottom: 1rem;
}

.play-button::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    border-width: 16px 0 16px 28px;
    border-style: solid;
    border-color: transparent transparent transparent white;
    margin-left: 6px;
}

.video-caption {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Section titles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .highlight {
    color: var(--accent);
}

/* Features section: "the Fun" = reddish-orange, "Way" = orange */
.features-section .section-title .highlight-fun {
    color: var(--highlight-fun);
}

.features-section .section-title .highlight-way {
    color: var(--highlight-way);
}

.features-section .section-subtitle {
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Features grid - 3 cols then 1 centered */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-gold);
}

.feature-card-center {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

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

.feature-icon.gold {
    color: var(--gold);
}

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

.feature-card p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Journey section */
.journey-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.journey-visual {
    text-align: center;
    margin-bottom: 3rem;
}

.browser-mockup {
    background: var(--bg-card);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    max-width: 900px;
    margin: 0 auto 1rem;
}

.journey-screenshot {
    width: 100%;
    display: block;
}

.journey-caption {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 1.75rem;
    border: 1px solid var(--border-dark);
    transition: all 0.2s;
}

.step-card-active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--border-gold);
}

.step-card:hover {
    background: var(--bg-card-hover);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.step-icon.gold {
    color: var(--gold);
}

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

.step-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why section - light/white block with black text */
.why-section {
    background: #ffffff;
}

.why-section .section-title {
    margin-bottom: 3.5rem;
    color: #1A1A1A;
}

.why-section .section-title .highlight {
    color: var(--accent);
}

.why-story {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 0;
    position: relative;
    line-height: 1.7;
}

.why-greeting {
    font-size: 1.125rem;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.why-hook {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2rem;
}

.why-lead {
    font-size: 1.375rem;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.why-lead em {
    color: var(--accent);
    font-style: normal;
    font-weight: 700;
}

.why-body {
    font-size: 1.1875rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-label {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1.25rem;
}

.why-label .why-x {
    color: var(--accent);
    margin-right: 0.35em;
    font-weight: 700;
}

.why-pain-list {
    list-style: none;
    margin-bottom: 2.5rem;
    padding-left: 0;
}

.why-pain-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: #1A1A1A;
    font-size: 1.125rem;
    line-height: 1.7;
}

.why-pain-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.why-contrast {
    font-size: 1.1875rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-question {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2rem;
}

.why-insight {
    font-size: 1.1875rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-insight strong {
    color: #1A1A1A;
}

.why-solution {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2.25rem;
}

.why-solution .highlight {
    color: var(--accent);
}

.why-cta-copy {
    font-size: 1.1875rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.why-cta-copy:last-child {
    margin-bottom: 0;
}

.why-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.why-cta-copy strong {
    color: #1A1A1A;
}

/* Why section - legacy grid (if used elsewhere) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 1.75rem;
    border: 1px solid var(--border-dark);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.2s;
}

.why-card:hover {
    background: var(--bg-card-hover);
}

.why-check {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.why-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section .section-subtitle {
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--border-dark);
    transition: all 0.2s;
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.author-name {
    font-weight: 500;
    font-size: 1.0625rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--border-dark);
    position: relative;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    background: var(--bg-card-hover);
}

.pricing-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 75, 58, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.pricing-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.price span {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-note {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 0.5rem 0;
}

.price-note-line {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
}

.price-note-line:first-child {
    margin-bottom: 0.2rem;
}

.price-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.35rem 0;
    color: var(--text-muted);
    font-size: 1.0625rem;
    padding-left: 1.25rem;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* CTA section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.0625rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Contact / privacy content links – visible on dark background */
.privacy-content a {
    color: var(--accent);
    text-decoration: none;
}
.privacy-content a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.privacy-content .last-updated {
    margin-bottom: 2rem;
}
.privacy-content .policy-section {
    margin-bottom: 2.5rem;
}
.privacy-content .policy-section:last-child {
    margin-bottom: 3.5rem;
}
.privacy-content.contact-content {
    padding-bottom: 3.5rem;
}
.privacy-content .policy-section p {
    margin-bottom: 1.25rem;
}
.privacy-content .policy-section p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-center {
        grid-column: 1 / -1;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pricing-card-featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .why-story {
        padding: 2.5rem 1.5rem;
    }

    .why-hook {
        font-size: 1.35rem;
    }

    .why-lead {
        font-size: 1.125rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

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

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

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

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

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 2rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.75rem 1.25rem;
    }
}
