/**
 * Hero Section - Clean Minimalist Design
 * Simple text-focused hero with brand tagline and description
 */

/* Disable all animations on hero elements */
.hero,
.hero *,
.hero-heading,
.hero-description {
    animation: none !important;
    transition: none !important;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    padding: 0;
    overflow: hidden;
}

/* Video Background Container */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.95;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(1.15);
}

/* Video Overlay - light with bottom fade to white for seamless transition */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.30) 60%,
            rgba(255, 255, 255, 0.5) 80%,
            rgba(255, 255, 255, 0.75) 90%,
            rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Row styles - Each takes specific viewport height */
.hero-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

/* Row 1: Headline - 38% */
.hero-row-headline {
    height: 38vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    padding-top: calc(var(--header-height, 75px) + 2rem);
}

/* Row 2: Content Area - 62% */
.hero-row-content {
    height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

/* Row 3: Subheadline - hidden/removed */
.hero-row-subheadline {
    display: none;
}

/* Hero Heading - Figma Display Style */
.hero-heading {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw + 0.5rem, 9rem);
    font-weight: 100;
    line-height: 1.09;
    letter-spacing: 0.05em;
    color: var(--np-black, #111827);
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 10;
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    cursor: text;
}

.hero-heading span {
    user-select: text !important;
    -webkit-user-select: text !important;
    cursor: text;
}

.hero-headline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.hero-subheading {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--neural-deep-black);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.8;
}

.hero-subheading br+span,
.hero-subheading::after {
    display: block;
}

.hero-subheading span {
    display: block;
    opacity: 0.85;
    font-weight: 400;
    font-size: 0.9em;
    letter-spacing: 0.12em;
}

/* Hero Description */
.hero-description {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--neural-deep-black);
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

/* Highlight Colors */
.text-highlight-warm {
    color: var(--np-orange-light);
}

.text-highlight-cool {
    color: var(--np-purple);
}

/* AI Response Container Styles */
.ai-response-container {
    max-width: 1150px;
    width: 90%;
    min-height: 415px;
    text-align: center;
    padding: 2.5rem 4rem;
    background: var(--np-white);
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow: 0 8px 16px -4px rgba(var(--np-black-rgb), 0.08), 0 4px 8px -2px rgba(var(--np-black-rgb), 0.04);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: linear-gradient(var(--np-white), var(--np-white)),
        var(--np-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ai-response-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(var(--np-black-rgb), 0.1), 0 10px 10px -5px rgba(var(--np-black-rgb), 0.04);
}

/* Add gradient accents on all sides */
.ai-response-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF966C 15%, var(--np-orange-light) 35%, var(--np-purple) 65%, var(--np-purple-light) 85%, transparent);
    border-radius: 2px;
}

.ai-response-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30%;
    right: 30%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--np-purple-light) 15%, var(--np-purple) 50%, #FF966C 85%, transparent);
    border-radius: 2px;
}

/* Hero Intro Text - styled like AI message */
.hero-intro-text {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    font-style: normal;
    line-height: 1.7;
    letter-spacing: 0.15em;
    color: var(--np-dark-grey);
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    width: 100%;
}

/* Divider between intro and AI response */
.hero-divider {
    display: block;
    width: 120px;
    height: 1px;
    background: var(--np-mid-grey);
    margin: 2rem auto;
}

.ai-response-text {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 200;
    line-height: 1.35;
    color: var(--np-black, #111827);
    margin: 0;
    letter-spacing: 0.04em;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ai-response-message {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 200;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg,
            #FF966C 0%,
            var(--np-orange-light) 20%,
            var(--np-purple) 40%,
            var(--np-purple-light) 60%,
            var(--np-purple) 80%,
            var(--np-orange-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: npai-shimmer 8s ease-in-out infinite;
}

@keyframes npai-shimmer {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* AI Loading State - shown while fetching AI response */
.ai-response-message.ai-loading {
    font-style: normal;
}

.ai-loading-dots {
    display: inline-flex;
    gap: 0.15em;
}

.ai-loading-dots span {
    animation: ai-loading-bounce 1.4s ease-in-out infinite;
    font-size: 2em;
    line-height: 0.5;
}

.ai-loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.ai-loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ai-loading-bounce {

    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-0.2em);
    }
}

/* npAI Waking Up State - Initial Load */
.npai-waking-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 2rem 0;
    transition: opacity 0.4s ease;
}

.npai-waking-overlay.hidden {
    display: none;
}

.ai-response-text.ai-response-hidden {
    display: none;
}

.ai-response-text.ai-response-visible {
    display: flex;
}

.npai-waking-text {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--np-dark-grey);
}

.npai-waking-text .npai-label {
    font-weight: 300;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--np-purple) 0%, var(--np-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.npai-waking-text .npai-message {
    font-weight: 200;
    font-style: italic;
    color: var(--np-grey);
}

.npai-waking-text .npai-dots {
    display: inline-flex;
    gap: 0.15em;
    margin-left: -0.25rem;
}

.npai-waking-text .npai-dots span {
    color: var(--np-grey);
    animation: npai-dot-fade 1.4s ease-in-out infinite;
}

.npai-waking-text .npai-dots span:nth-child(1) {
    animation-delay: 0s;
}

.npai-waking-text .npai-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.npai-waking-text .npai-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes npai-dot-fade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.ai-response-signature {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 200;
    font-style: normal;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.ai-response-name {
    font-weight: 200;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, var(--np-orange-light) 0%, var(--np-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-response-title {
    font-weight: 300;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, var(--np-purple) 0%, var(--np-purple-light) 50%, var(--np-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Debug Toggle Button */
.ai-debug-toggle {
    background: none;
    border: none;
    color: var(--np-grey, #9CA3AF);
    font-family: var(--font-primary);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    margin-top: 0;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.ai-debug-toggle:hover {
    color: var(--np-purple, #3c1361);
}

.ai-debug-toggle-icon {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
}

.ai-debug-toggle.open .ai-debug-toggle-icon {
    transform: rotate(180deg);
}

/* Debug Drawer */
.ai-debug-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    width: 100%;
}

.ai-debug-drawer.open {
    max-height: 200px;
    padding-top: 1rem;
}

.ai-debug-content {
    background: var(--neural-soft-neutral);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: left;
}

.ai-debug-item {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--np-dark-grey);
    margin-bottom: 0.75rem;
}

.ai-debug-item:last-child {
    margin-bottom: 0;
}

.ai-debug-label {
    font-weight: 500;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, var(--np-purple) 0%, var(--np-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

/* Message 2 value - gradient, thin, smaller */
.ai-debug-item:first-child .ai-debug-value {
    font-weight: 200;
    font-size: 0.9375rem;
    background: linear-gradient(90deg, var(--np-orange-light) 0%, var(--np-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.85;
}

/* Message 3+ value - normal styling */
.ai-debug-value {
    color: var(--np-dark-grey, #6B7280);
    font-weight: 400;
}

/* Style for when displaying fallback text */
.ai-response-text[data-fallback="true"] {
    font-style: normal;
    opacity: 1;
}

/* Style for when displaying API response */
.ai-response-text[data-fallback="false"] {
    font-style: normal;
    opacity: 1;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Loading state */
.ai-response-container.loading {
    background: linear-gradient(90deg, var(--np-white) 0%, var(--neural-soft-neutral) 50%, var(--np-white) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.ai-response-container.loading .ai-response-text {
    opacity: 0.4;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Error state */
.ai-response-container.error {
    border-color: #FCA5A5;
}

.ai-response-container.error .ai-response-text {
    color: var(--np-dark-grey);
    font-size: 1.75rem;
}

/* npAI Controls Container */
.npai-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* npAI Status Indicator */
.npai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.npai-controls .npai-label {
    color: var(--np-black);
    font-weight: 500;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
}

.npai-state {
    color: var(--np-dark-grey);
    transition: all 0.3s ease;
}

/* State-specific styling */
.npai-state[data-state="sleeping"] {
    color: var(--np-grey);
}

.npai-state[data-state="active"] {
    color: var(--np-purple, #3c1361);
    font-weight: 500;
}

/* Add a subtle indicator dot */
.npai-state::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.npai-state[data-state="sleeping"]::before {
    background-color: var(--np-mid-grey, #D1D5DB);
}

.npai-state[data-state="active"]::before {
    background-color: var(--np-purple, #3c1361);
    box-shadow: 0 0 0 2px rgba(60, 19, 97, 0.2);
}

/* npAI Refresh Button */
.npai-refresh-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--np-white);
    border: 1px solid var(--np-black);
    color: var(--np-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 2px 6px rgba(var(--np-black-rgb), 0.06);
}

.npai-refresh-btn:hover:not(:disabled) {
    background-image: linear-gradient(var(--np-white), var(--np-white)),
        var(--np-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transform: rotate(180deg);
    box-shadow: 0 4px 10px rgba(var(--np-black-rgb), 0.1);
}

.npai-refresh-btn:active:not(:disabled) {
    transform: rotate(180deg) scale(0.95);
}

.npai-refresh-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--neural-soft-neutral);
    border-color: var(--np-mid-grey);
    color: var(--np-grey);
}

.npai-refresh-btn svg {
    transition: transform 0.3s ease;
}

.npai-refresh-btn:not(:disabled):hover svg {
    transform: rotate(180deg);
}

/* Animation for refresh action */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.npai-refresh-btn.refreshing {
    animation: spin 1s linear infinite;
    pointer-events: none;
}

.npai-refresh-btn.refreshing svg {
    animation: none;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-bottom: 3rem;
    gap: 2.75rem;
}

/* Explore Button Styles */
.hero-explore-btn {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--np-purple) 0%, var(--np-purple-light) 100%);
    color: var(--np-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--np-purple-rgb), 0.35);
    background: linear-gradient(135deg, #4a1a7a 0%, #8B72E0 100%);
}

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

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Button Divider - Double Slash */
.hero-btn-divider {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--np-grey);
    letter-spacing: 0.1em;
    user-select: none;
}

/* Secondary Button - Talk to Human */
.hero-secondary-btn {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--np-purple);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(var(--np-purple-rgb), 0.4);
    border-radius: 8px;
    background: rgba(var(--np-white-rgb), 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    color: var(--np-white);
    border-color: var(--np-purple);
    background: linear-gradient(135deg, var(--np-purple) 0%, var(--np-purple-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--np-purple-rgb), 0.25);
}

/* Hide Mobile Hero on Desktop */
@media (min-width: 768px) {
    .hero-section-mobile {
        display: none !important;
    }
}

/* Small desktop viewport adjustments (13-14" laptops with limited height) */
@media (max-height: 800px) and (min-width: 768px) {
    .hero-row-headline {
        height: 35vh;
        padding-bottom: 1rem;
    }

    .hero-row-content {
        height: 65vh;
    }

    .hero-heading {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-subheading {
        font-size: clamp(0.75rem, 1vw, 0.9rem);
        line-height: 1.6;
    }

    .hero-headline-content {
        gap: 0.75rem;
    }

    .ai-response-container {
        padding: 1.5rem 2.5rem;
    }

    .ai-response-message {
        font-size: clamp(1.25rem, 2vw, 1.5rem);
    }

    .hero-intro-text {
        font-size: clamp(0.8rem, 0.95vw, 0.9rem);
        line-height: 1.5;
    }

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

    .hero-content-wrapper {
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero-explore-btn,
    .hero-secondary-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero-row {
        padding: 0 1.5rem;
    }

    .hero-heading {
        font-size: clamp(2.75rem, 5.5vw, 4.5rem);
        font-weight: 200;
        letter-spacing: -0.02em;
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 95%;
    }

    .ai-response-text {
        font-size: 2.25rem;
    }

    .ai-response-message {
        font-size: 2rem;
    }

    .ai-response-container {
        padding: 2.5rem 2.5rem;
        width: 92%;
        max-width: 900px;
        min-height: 260px;
    }

    .hero-explore-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .hero-content-wrapper {
        gap: 2rem;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        padding: calc(var(--header-height, 75px) + 0.5rem) 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-row {
        height: auto !important;
        padding: 0;
        flex: 0 0 auto;
    }

    .hero-row-headline {
        min-height: auto;
        padding: 0;
    }

    .hero-row-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .hero-row-subheadline {
        min-height: auto;
        padding: 0;
    }

    .hero-heading {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        font-weight: 200;
        letter-spacing: -0.02em;
    }

    .hero-subheading {
        font-size: 0.875rem;
        letter-spacing: 0.05em;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .ai-response-message {
        font-size: 1.5rem;
    }

    .ai-response-container {
        padding: 1.5rem 1.5rem 3rem;
        width: 94%;
        min-height: auto;
    }

    .npai-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
    }

    .hero-btn-divider {
        display: none;
    }

    .hero-explore-btn,
    .hero-secondary-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100svh;
        height: auto;
        padding: calc(var(--header-height, 75px) + 0.25rem) 1rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 1.25rem;
    }

    .hero-row {
        padding: 0;
        height: auto !important;
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-row-headline {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .hero-row-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .hero-row-subheadline {
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-heading {
        font-size: clamp(2.25rem, 8vw, 3rem);
        font-weight: 200;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .hero-subheading {
        font-size: 0.75rem;
        letter-spacing: 0.03em;
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        width: 100%;
    }

    .ai-response-message {
        font-size: 1.125rem !important;
        line-height: 1.6 !important;
    }

    .ai-response-signature {
        font-size: 0.8125rem;
    }

    .ai-response-container {
        padding: 1.5rem 1.25rem 3.25rem;
        width: 95%;
        border-radius: 16px;
        position: relative;
        min-height: 200px;
    }

    .ai-response-container::before {
        left: 8%;
        right: 8%;
    }

    .ai-response-container::after {
        left: 15%;
        right: 15%;
    }

    /* Fix npAI controls positioning */
    .npai-controls {
        position: absolute;
        bottom: 0.875rem;
        right: 0.875rem;
        left: 0.875rem;
        gap: 0.875rem;
        justify-content: space-between;
    }

    .npai-status {
        font-size: 0.6875rem;
        flex-shrink: 0;
    }

    .npai-refresh-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .npai-refresh-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 0.5rem;
    }

    .hero-btn-divider {
        display: none;
    }

    .hero-explore-btn {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        white-space: nowrap;
        letter-spacing: 0.05em;
        width: 100%;
        text-align: center;
    }

    .hero-secondary-btn {
        font-size: 0.875rem;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .hero-content-wrapper {
        gap: 1.25rem;
    }

    /* Hide debug drawer on mobile */
    .ai-debug-drawer {
        display: none;
    }

    /* Disable hover effects on mobile */
    .ai-response-container:hover {
        transform: none;
        box-shadow: 0 8px 16px -4px rgba(var(--np-black-rgb), 0.08), 0 4px 8px -2px rgba(var(--np-black-rgb), 0.04);
    }
}