.nl-root {
    --bg-color: #f2f2f1;
    --text-color: #000000;
    --text-muted: #444444;
    --btn-bg: #000000;
    --btn-text: #ffffff;
    --accent: #ff6b00; /* For visor if needed, though mostly image handles it */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-heading-alt: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

.nl-root {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Removed restrictive height/flex rules to let the hero grow naturally */
}

/* Navbar — inside .hero so it shares the same video layer; no fill (video shows through) */
.nl-root .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    background-color: transparent;
}

.nl-root .logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nl-root .nav-links {
    display: flex;
    gap: 30px;
}

.nl-root .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nl-root .nav-links a:hover {
    color: var(--accent);
}

.nl-root .nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nl-root .sign-up {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
}

.nl-root .btn-login {
    text-decoration: none;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    padding: 10px 24px;
    font-weight: 500;
    font-size: 15px;
    transition: background-color 0.2s, transform 0.2s;
}

.nl-root .btn-login:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Hero — uploaded design; page background is --bg-color (#fff) */
.nl-root .hero {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    padding-bottom: 8vh;
    background-color: var(--bg-color);
}

.nl-root .hero-left {
    padding-top: 15vh;
    width: 35%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.nl-root .hero-left h1 {
    font-family: var(--font-heading);
    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.85;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.nl-root .hero-left .subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 500;
}

.nl-root .cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    text-decoration: none;
    padding: 8px 8px 8px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    width: fit-content;
    margin-bottom: 40px; /* Forces fixed breathing room below the button */
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nl-root .cta-button:hover {
    transform: scale(1.05);
}

.nl-root .cta-button .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #000000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 16px;
    transition: transform 0.3s;
}

.nl-root .cta-button:hover .arrow {
    transform: translateX(4px);
}

.nl-root .designer-info {
    margin-top: auto;
    padding-bottom: 30px;
}

.nl-root .designer-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.nl-root .social-links {
    display: flex;
    gap: 16px;
}

.nl-root .social-links a {
    color: var(--text-color);
    transition: transform 0.2s, color 0.2s;
    display: flex;
}

.nl-root .social-links a:hover {
    transform: translateY(-3px);
    color: var(--accent);
}

/*
 * Video stack — matches uploaded CSS: mask lives on a wrapper (not on <video>) so Safari still plays the file.
 */
.nl-root .hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Full video under header; only fade bottom into marquee (top was hiding video → white bar) */
    mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 82%, transparent 100%);
}

/* Soft white edge blend into page (--bg-color) */
.nl-root .hero-video-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Fallback (works everywhere): white vignette + edge fades */
    background:
        linear-gradient(to bottom, rgba(242, 242, 241, 0.88) 0%, rgba(242, 242, 241, 0) 14%),
        linear-gradient(to top, rgba(242, 242, 241, 0.92) 0%, rgba(242, 242, 241, 0) 38%),
        linear-gradient(to right, rgba(242, 242, 241, 0.85) 0%, rgba(242, 242, 241, 0) 20%),
        linear-gradient(to left, rgba(242, 242, 241, 0.85) 0%, rgba(242, 242, 241, 0) 20%),
        radial-gradient(
            ellipse 95% 82% at 50% 48%,
            rgba(242, 242, 241, 0) 0%,
            rgba(242, 242, 241, 0) 36%,
            rgba(242, 242, 241, 0.42) 68%,
            rgba(242, 242, 241, 1) 100%
        );
}

/* Prefer blending with the actual page bg color when supported. */
@supports (background: color-mix(in srgb, white 50%, transparent)) {
    .nl-root .hero-video-wrap::after {
        background:
            linear-gradient(to bottom, color-mix(in srgb, var(--bg-color) 88%, transparent) 0%, transparent 14%),
            linear-gradient(to top, color-mix(in srgb, var(--bg-color) 92%, transparent) 0%, transparent 38%),
            linear-gradient(to right, color-mix(in srgb, var(--bg-color) 85%, transparent) 0%, transparent 20%),
            linear-gradient(to left, color-mix(in srgb, var(--bg-color) 85%, transparent) 0%, transparent 20%),
            radial-gradient(
                ellipse 95% 82% at 50% 48%,
                transparent 0%,
                transparent 36%,
                color-mix(in srgb, var(--bg-color) 42%, transparent) 68%,
                var(--bg-color) 100%
            );
    }
}

.nl-root .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: translateY(8vh);
    object-fit: cover;
    pointer-events: none;
}

/* Hero Right */
.nl-root .hero-right {
    padding-top: 15vh;
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: right;
    z-index: 2;
}

.nl-root .stat-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 3vw, 42px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.nl-root .stat-block p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    font-weight: 500;
}

.nl-root .bottom-stat {
    margin-top: auto;
    padding-bottom: 30px;
}

/* Marquee / Footer */
.nl-root .marquee-container {
    padding: 24px 0;
    border-top: 1px solid #eaeaea;
    overflow: hidden;
    background: #ffffff;
    z-index: 10;
    position: relative;
    white-space: nowrap;
}

.nl-root .marquee-content {
    display: inline-flex;
    animation: marquee 25s linear infinite;
}

.nl-root .marquee-item {
    display: flex;
    align-items: center;
    font-family: var(--font-heading-alt);
    font-weight: 700;
    font-size: 20px;
    padding: 0 40px;
    color: #000;
}

/* Abstract shapes for Marquee items */
.nl-root .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 12px;
}
.nl-root .icon.circle { background: #000; border-radius: 50%; }
.nl-root .icon.outline-circle { border: 3px solid #000; border-radius: 50%; height: 16px; width: 16px; }
.nl-root .icon.bars { background: repeating-linear-gradient(90deg, #000, #000 4px, transparent 4px, transparent 8px); }
.nl-root .icon.dots { background: radial-gradient(circle, #000 40%, transparent 40%); background-size: 8px 8px; }
.nl-root .icon.slashes { background: repeating-linear-gradient(45deg, #000, #000 3px, transparent 3px, transparent 6px); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animations */
.nl-root .stagger-fade {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.nl-root .stagger-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.nl-root .scale-up {
    opacity: 0;
    transform: translate(-50%, 20px) scale(0.95);
    animation: scaleUpProfile 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.nl-root .delay-1 { animation-delay: 0.1s; }
.nl-root .delay-2 { animation-delay: 0.2s; }
.nl-root .delay-3 { animation-delay: 0.3s; }
.nl-root .delay-4 { animation-delay: 0.4s; }
.nl-root .delay-5 { animation-delay: 0.5s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

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

@keyframes scaleUpProfile {
    to {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

/* ---------------------------------------------------
   PHASE 5: RADICAL AESTHETIC OVERHAUL
------------------------------------------------------ */
.nl-root .py-large { padding: 120px 5%; }
.nl-root .container { max-width: 1400px; margin: 0 auto; }
.nl-root .container-tight { max-width: 1000px; margin: 0 auto; }

.nl-root .dark-theme { background-color: #000000; color: #ffffff; }
.nl-root .dark-theme .text-muted { color: #cccccc; }
.nl-root .dark-theme .section-title { color: #ffffff; border-bottom-color: #333333; }
.nl-root .dark-theme .cta-button { background-color: #ffffff; color: #000000; }
.nl-root .dark-theme .cta-button .arrow { background-color: #000000; color: #ffffff; }

.nl-root .section-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
}

/* SERVICES: Row Reveal */
.nl-root .services-list {
    display: flex;
    flex-direction: column;
}
.nl-root .service-row {
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
    border-bottom: 1px solid #222;
    transition: background-color 0.4s;
    overflow: hidden;
}
.nl-root .service-row:hover {
    background-color: #0d0d0d;
}
.nl-root .service-bg-num {
    font-family: var(--font-heading);
    font-size: 160px;
    line-height: 0.8;
    color: #1a1a1a;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: color 0.4s, opacity 0.4s;
}
.nl-root .service-row:hover .service-bg-num {
    color: var(--accent);
    opacity: 0.15;
}
.nl-root .service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
    padding-left: 20px;
}
.nl-root .service-content h3 {
    font-size: 40px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 0;
    width: 40%;
}
.nl-root .service-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #a0a0a0;
    width: 50%;
}

/* VOICES: Animated audio waves */
.nl-root .voices-section {
    background-color: #f7f7f7;
}

.nl-root .voices-section .reveal-up,
.nl-root .voices-section .reveal-fade {
    /* Ensure samples render even if observer fails on some browsers/extensions */
    opacity: 1;
    transform: none;
}

.nl-root .voices-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nl-root .voice-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d0d0d;
    padding: 30px 40px;
    border-radius: 100px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    cursor: pointer;
    border: 1px solid #222;
}

.nl-root .voice-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #444;
}

.nl-root .voice-panel-left {
    display: flex;
    align-items: center;
}

.nl-root .huge-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 30px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nl-root .voice-panel:hover .huge-play-btn {
    transform: scale(1.15) rotate(90deg); /* little twist */
}

.nl-root .huge-play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.nl-root .voice-info h3 {
    font-size: 32px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #fff;
}

.nl-root .voice-info p {
    font-size: 16px;
    color: #a0a0a0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(420px, 55vw);
}

.nl-root .audio-visualizer {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    margin-right: 20px;
}

.nl-root .audio-visualizer .bar {
    width: 6px;
    background-color: #555;
    border-radius: 10px;
    animation: equalize 1.2s infinite ease-in-out;
    transition: background-color 0.3s;
}

.nl-root .audio-visualizer .bar:nth-child(1) { height: 15px; animation-delay: 0.1s; }
.nl-root .audio-visualizer .bar:nth-child(2) { height: 35px; animation-delay: 0.3s; }
.nl-root .audio-visualizer .bar:nth-child(3) { height: 45px; animation-delay: 0.5s; }
.nl-root .audio-visualizer .bar:nth-child(4) { height: 25px; animation-delay: 0.2s; }
.nl-root .audio-visualizer .bar:nth-child(5) { height: 40px; animation-delay: 0.4s; }
.nl-root .audio-visualizer .bar:nth-child(6) { height: 20px; animation-delay: 0.6s; }

.nl-root .voice-panel:hover .audio-visualizer .bar { background-color: var(--accent); }

@keyframes equalize {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

/* TESTIMONIALS: Editorial Magazine Quotes */
.nl-root .bg-f9 { background-color: #f9f9f9; }
.nl-root .text-center { text-align: center; }

.nl-root .editorial-quote {
    /* Pin to the uploaded design's heading font (Bebas Neue). */
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    color: #000;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
}

.nl-root .scroll-reveal-text span {
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.nl-root .scroll-reveal-text span.active {
    opacity: 1;
}

.nl-root .quote-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* PRICING: Neon Aura Glow */
.nl-root .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
}

.nl-root .pricing-tier {
    background-color: #0d0d0d;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.nl-root .pricing-tier.glowing {
    background-color: #000000;
    border: 1px solid #444;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.15);
    padding: 50px 40px;
    position: relative;
    transform: scale(1.03);
    z-index: 2;
}

.nl-root .glow-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nl-root .tier-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.nl-root .tier-header h3 {
    font-size: 22px;
    color: #a0a0a0;
    margin-bottom: 12px;
}

.nl-root .tier-header .price {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1;
}

.nl-root .tier-header .price span {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #a0a0a0;
}

.nl-root .tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.nl-root .tier-features li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 16px;
}

.nl-root .tier-features .check {
    color: var(--accent);
    margin-right: 12px;
    font-weight: bold;
}

.nl-root .tier-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    background-color: #222;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.nl-root .tier-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.nl-root .tier-btn.primary {
    background-color: var(--accent);
    color: #ffffff;
}

.nl-root .tier-btn.primary:hover {
    background-color: #e66000;
    color: #ffffff;
}


/* FAQ Accordion - SUPER COOL SPLIT LAYOUT */
.nl-root .faq-section { position: relative; background-color: #050505; color: #fff; overflow: visible; }
.nl-root .faq-glow-orb { position: absolute; left: -10%; top: 30%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%); z-index: 1; pointer-events: none; }
.nl-root .faq-split-layout { display: flex; justify-content: space-between; align-items: flex-start; z-index: 2; position: relative; }
.nl-root .faq-left { width: 40%; position: sticky; top: 100px; }
.nl-root .faq-massive-title { font-family: var(--font-heading); font-size: clamp(60px, 8vw, 130px); line-height: 0.85; margin-bottom: 24px; color: #fff; text-shadow: 0 0 40px rgba(255, 107, 0, 0.4); }
.nl-root .faq-left p { font-size: 18px; color: #a0a0a0; line-height: 1.5; font-weight: 500;}

.nl-root .faq-accordion { width: 55%; border-top: 1px solid #333; }
.nl-root .faq-row { border-bottom: 1px solid #333; transition: background-color 0.4s; overflow: hidden; }
.nl-root .faq-row.open { background-color: #111; border-left: 3px solid var(--accent); }

.nl-root .faq-toggle { width: 100%; display: flex; align-items: center; padding: 40px 20px; background: none; border: none; cursor: pointer; font-family: var(--font-body); text-align: left; color: #fff;}
.nl-root .faq-num { font-family: var(--font-heading-alt); font-size: 16px; color: var(--accent); margin-right: 24px; position: relative; top: -3px; }

.nl-root .faq-question { font-size: 32px; font-weight: 400; font-family: var(--font-heading); letter-spacing: 1px; color: #fff; transition: color 0.3s; flex: 1; }
.nl-root .faq-toggle:hover .faq-question { color: var(--accent); }

.nl-root .faq-icon-wrapper { width: 50px; height: 50px; border-radius: 50%; border: 1px solid #333; display: flex; align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); flex-shrink: 0; margin-left: 20px; background-color: transparent;}
.nl-root .faq-toggle:hover .faq-icon-wrapper { background-color: #fff; color: #000; border-color: #fff;}
.nl-root .faq-icon { font-size: 32px; font-weight: 300; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); margin-top: 2px;}

.nl-root .faq-row.open .faq-icon { transform: rotate(45deg); color: #fff;}
.nl-root .faq-row.open .faq-icon-wrapper { background-color: var(--accent); border-color: var(--accent); color: #fff;}

.nl-root .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.5s ease; padding: 0 20px; }
.nl-root .faq-row.open .faq-answer { max-height: 300px; padding-bottom: 40px; padding-left: 65px; /* Aligns with text past the numbers */ }

.nl-root .faq-answer p { font-size: 16px; line-height: 1.6; color: #a0a0a0; }


/* Footer CTA */
.nl-root .main-footer {
    display: flex;
    flex-direction: column;
}

.nl-root .footer-cta {
    text-align: center;
    margin-bottom: 80px;
}

.nl-root .footer-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.9;
    margin-bottom: 40px;
}

.nl-root .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
    padding-top: 24px;
    font-size: 14px;
}

.nl-root .footer-links {
    display: flex;
    gap: 24px;
}

.nl-root .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.nl-root .footer-links a:hover {
    color: var(--accent);
}

/* Reveal classes for observer */
.nl-root .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nl-root .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.nl-root .reveal-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.nl-root .reveal-fade.active {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nl-root .hero-center { width: 55%; }
    .nl-root .hero-left { width: 40%; }
    .nl-root .hero-right { width: 40%; }
    .nl-root .service-content { flex-direction: column; align-items: flex-start; }
    .nl-root .service-content h3 { width: 100%; margin-bottom: 12px; }
    .nl-root .service-content p { width: 100%; }
}

@media (max-width: 768px) {
    .nl-root { height: auto; display: block; }
    .nl-root .hero { flex-direction: column; align-items: center; text-align: center; padding-top: 40px; }
    .nl-root .hero-left, .nl-root .hero-right { width: 100%; text-align: center; margin-bottom: 40px; }
    .nl-root .hero-left h1 { font-size: 60px; }
    .nl-root .cta-button { margin: 0 auto 40px auto; }
    .nl-root .designer-info { padding-bottom: 0px; }
    .nl-root .social-links { justify-content: center; }
    .nl-root .hero-center { position: relative; bottom: 0; transform: none; left: 0; width: 100%; height: 400px; margin-bottom: 40px; }
    .nl-root .nav-links { display: none; }
    .nl-root .pricing-grid { grid-template-columns: 1fr; }
    .nl-root .voice-panel { flex-direction: column; text-align: center; align-items: center; }
    .nl-root .voice-panel-left { flex-direction: column; }
    .nl-root .huge-play-btn { margin-right: 0; margin-bottom: 20px; }
    .nl-root .audio-visualizer { margin-top: 20px; margin-right: 0; }
}

/* Next.js: logo image in nav (replaces text logo) */
.nl-root .logo.logo--image {
    font-size: 0;
    line-height: 0;
}

.nl-root .logo.logo--image img {
    height: 40px;
    width: auto;
}

@media (min-width: 640px) {
    .nl-root .logo.logo--image img {
        height: 44px;
    }
}

@media (min-width: 768px) {
    .nl-root .logo.logo--image img {
        height: 48px;
    }
}

.nl-root .voice-panel--playing .audio-visualizer .bar {
    background-color: var(--accent);
}
