/* ================================================
   NUUKO LANDING PAGE STYLES
   A cozy, warm landing experience
   ================================================ */

/* === CSS VARIABLES === */
:root {
    /* Nuuko Color Palette */
    --nuuko-green: #6B8F71;
    --nuuko-green-light: #A6C3A7;
    --nuuko-green-dark: #5A7A60;
    --nuuko-clay: #9A6B51;
    --nuuko-clay-light: #CFA88D;
    --nuuko-espresso: #3D342C;
    --nuuko-cream: #F3EFE5;
    --nuuko-cream-light: #FDFCF9;
    --nuuko-cream-dark: #EDE7DB;
    --nuuko-stone: #8D877E;
    --nuuko-stone-light: #A69B93;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Crimson Pro', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-pill: 50px;
    
    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(61, 52, 44, 0.08), 0 1px 3px rgba(61, 52, 44, 0.06);
    --shadow-medium: 0 8px 25px rgba(61, 52, 44, 0.12), 0 3px 10px rgba(61, 52, 44, 0.08);
    --shadow-large: 0 20px 50px rgba(61, 52, 44, 0.15), 0 8px 25px rgba(61, 52, 44, 0.1);
    --shadow-warm: 0 8px 32px rgba(154, 107, 81, 0.15);
    --shadow-glow: 0 0 40px rgba(107, 143, 113, 0.2);
    
    /* Transitions */
    --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--nuuko-espresso);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background-color: var(--nuuko-cream);
    overflow-x: hidden;
    background-image:
        /* Paper grain texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
        /* Color gradients */
        radial-gradient(circle at 20% 20%, rgba(107, 143, 113, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(154, 107, 81, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--nuuko-cream-light) 0%, var(--nuuko-cream) 50%, var(--nuuko-cream-dark) 100%);
    background-blend-mode: overlay, normal, normal, normal;
    background-attachment: fixed;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* === CONTAINER === */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .landing-container {
        padding: 0 var(--space-lg);
    }
}

/* === NAVIGATION === */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(141, 135, 126, 0.12);
    transition: all 0.3s var(--ease-gentle);
}

.landing-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: opacity 0.2s var(--ease-gentle);
}

.landing-logo:hover {
    opacity: 0.8;
}

.landing-feather {
    width: 28px;
    height: 28px;
    animation: float 4s ease-in-out infinite;
}

.landing-brand {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--nuuko-espresso);
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.landing-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nuuko-stone);
    transition: color 0.2s var(--ease-gentle);
}

/* Auth buttons are now enabled */

.landing-nav-link:hover {
    color: var(--nuuko-espresso);
}

/* Mobile Menu Toggle */
.landing-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
    color: var(--nuuko-espresso);
    border-radius: var(--radius-sm);
    transition: background 0.2s var(--ease-gentle);
}

.landing-nav-toggle:hover {
    background: rgba(107, 143, 113, 0.1);
}

@media (max-width: 600px) {
    .landing-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .landing-nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 252, 249, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-md);
        border-bottom: 1px solid rgba(141, 135, 126, 0.15);
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s var(--ease-gentle);
    }
    
    .landing-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .landing-nav-link {
        display: block;
        padding: var(--space-sm) 0;
        font-size: 1rem;
    }
    
    .landing-nav-links .landing-btn {
        width: 100%;
        justify-content: center;
        margin-top: var(--space-sm);
    }
}

/* === BUTTONS === */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.25;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-gentle);
    text-decoration: none;
}

.landing-btn-primary {
    background: linear-gradient(135deg, var(--nuuko-green) 0%, var(--nuuko-green-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 143, 113, 0.3), 0 2px 6px rgba(107, 143, 113, 0.2);
}

.landing-btn-primary:hover {
    background: linear-gradient(135deg, var(--nuuko-green-dark) 0%, var(--nuuko-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 143, 113, 0.4), 0 4px 12px rgba(107, 143, 113, 0.25);
}

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

.landing-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--nuuko-espresso);
    border: 1px solid rgba(141, 135, 126, 0.25);
    box-shadow: var(--shadow-soft);
}

.landing-btn-secondary:hover {
    background: white;
    border-color: rgba(107, 143, 113, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.landing-btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* === HERO SECTION === */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(72px + var(--space-3xl)) var(--space-xl) var(--space-4xl);
    overflow: hidden;
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(107, 143, 113, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(154, 107, 81, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero floating decorations */
.hero-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.4;
    color: var(--nuuko-green);
}

.hero-deco-star-1 {
    top: 18%;
    left: 12%;
    animation: twinkle 3s ease-in-out infinite, float 6s ease-in-out infinite;
}

.hero-deco-star-2 {
    top: 28%;
    right: 15%;
    animation: twinkle 4s ease-in-out infinite 1s, float 7s ease-in-out infinite 0.5s;
    color: var(--nuuko-clay);
    opacity: 0.35;
}

.hero-deco-heart {
    bottom: 30%;
    left: 8%;
    animation: float 5s ease-in-out infinite 0.3s;
    color: var(--nuuko-clay);
    opacity: 0.3;
}

.hero-deco-leaf-1 {
    top: 35%;
    right: 8%;
    animation: sway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.hero-deco-leaf-2 {
    bottom: 25%;
    right: 12%;
    animation: sway 5s ease-in-out infinite 1s;
    transform-origin: bottom center;
    opacity: 0.35;
}

.hero-deco-sparkle {
    top: 22%;
    right: 22%;
    animation: sparkle 2s ease-in-out infinite;
    color: var(--nuuko-green-light);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .hero-deco {
        display: none;
    }
}

/* Title underline decoration */
.title-underline {
    display: block;
    margin: 0.5rem auto 0;
    color: var(--nuuko-green);
    opacity: 0.5;
}

.landing-section-title {
    position: relative;
}

.landing-section-title .title-underline {
    margin-top: 0.25rem;
}

.landing-hero-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.landing-hero-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto var(--space-2xl);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.12) 0%, rgba(154, 107, 81, 0.12) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        var(--shadow-large),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    animation: pulse 4s ease-in-out infinite;
}

.landing-hero-feather {
    width: 70px;
    height: 70px;
    animation: float 4s ease-in-out infinite;
}

.landing-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-lg);
}

.landing-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.7;
    color: var(--nuuko-stone);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
}

.landing-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 500px) {
    .landing-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .landing-hero-buttons .landing-btn {
        width: 100%;
    }
}

/* Scroll Indicator */
.landing-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nuuko-stone);
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity 0.2s var(--ease-gentle);
}

.landing-scroll-indicator:hover {
    opacity: 1;
    color: var(--nuuko-green);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
    .landing-scroll-indicator {
        display: none;
    }
}

/* === SECTIONS === */
.landing-section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.landing-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--nuuko-espresso);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.landing-section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

/* === WHAT MAKES NUUKO SPECIAL === */
.landing-special {
    background:
        /* Paper texture noise overlay */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"),
        /* Soft cream gradient */
        linear-gradient(180deg,
            var(--nuuko-cream) 0%,
            rgba(237, 231, 219, 0.95) 30%,
            rgba(243, 239, 229, 0.98) 70%,
            var(--nuuko-cream) 100%
        );
    background-blend-mode: soft-light, normal;
    position: relative;
    overflow: hidden;
}

.landing-special::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Subtle fiber texture */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(141, 135, 126, 0.02) 2px,
            rgba(141, 135, 126, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(141, 135, 126, 0.015) 2px,
            rgba(141, 135, 126, 0.015) 4px
        );
    pointer-events: none;
}

.landing-special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

/* 5-card grid: 3 on top, 2 centered below */
.landing-special-grid-5 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* First row: 3 cards spanning 2 columns each */
.landing-special-grid-5 .landing-special-card:nth-child(1),
.landing-special-grid-5 .landing-special-card:nth-child(2),
.landing-special-grid-5 .landing-special-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row: 2 cards centered */
.landing-special-grid-5 .landing-special-card:nth-child(4) {
    grid-column: 2 / 4;
}

.landing-special-grid-5 .landing-special-card:nth-child(5) {
    grid-column: 4 / 6;
}

@media (max-width: 900px) {
    .landing-special-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-special-grid-5 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-special-grid-5 .landing-special-card:nth-child(1),
    .landing-special-grid-5 .landing-special-card:nth-child(2),
    .landing-special-grid-5 .landing-special-card:nth-child(3),
    .landing-special-grid-5 .landing-special-card:nth-child(4),
    .landing-special-grid-5 .landing-special-card:nth-child(5) {
        grid-column: 1;
    }
}

.landing-special-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid rgba(141, 135, 126, 0.12);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-gentle);
}

.landing-special-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(107, 143, 113, 0.25);
}

.landing-special-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.15) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nuuko-green);
}

.landing-special-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-sm);
}

.landing-special-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    margin: 0;
}

/* === AI FEATURES SECTION === */
.landing-ai-section {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl) var(--space-xl);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.06) 0%, rgba(154, 107, 81, 0.04) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(107, 143, 113, 0.15);
}

.landing-ai-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.landing-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nuuko-green);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(107, 143, 113, 0.2);
    box-shadow: 0 2px 8px rgba(107, 143, 113, 0.1);
}

.landing-ai-badge svg {
    flex-shrink: 0;
}

.landing-ai-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    max-width: 480px;
    margin: 0 auto;
}

/* 3 on top, 2 on bottom grid layout */
.landing-ai-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}

.landing-ai-grid-2x2 .landing-ai-card:nth-child(4),
.landing-ai-grid-2x2 .landing-ai-card:nth-child(5) {
    grid-column: span 1;
}

/* Center the bottom 2 cards */
.landing-ai-grid-2x2 .landing-ai-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    width: calc(100% + 50%);
    max-width: 100%;
}

.landing-ai-grid-2x2 .landing-ai-card:nth-child(5) {
    grid-column: 3 / 4;
    margin-right: auto;
    width: calc(100% + 50%);
    max-width: 100%;
}

/* Wrapper for centering bottom row */
.landing-ai-grid-2x2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.landing-ai-grid-2x2 .landing-ai-card {
    flex: 0 1 calc(33.333% - var(--space-lg));
    min-width: 280px;
}

@media (max-width: 900px) {
    .landing-ai-grid-2x2 {
        flex-direction: column;
        align-items: center;
    }

    .landing-ai-grid-2x2 .landing-ai-card {
        flex: 0 1 100%;
        max-width: 400px;
        width: 100%;
    }
}

.landing-ai-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid rgba(141, 135, 126, 0.12);
    transition: all 0.3s var(--ease-gentle);
    box-shadow: 0 2px 8px rgba(61, 52, 44, 0.04);
}

.landing-ai-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(107, 143, 113, 0.25);
}

.landing-ai-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nuuko-green);
}

.landing-ai-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-sm);
}

.landing-ai-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--nuuko-stone);
    margin: 0;
}

/* === PREVIEW SECTION === */
.landing-preview {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(107, 143, 113, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
}

.landing-preview-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.landing-preview-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 900px) {
    .landing-preview-showcase {
        grid-template-columns: 1fr;
    }
}

.landing-preview-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(141, 135, 126, 0.15);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.landing-preview-main {
    padding: var(--space-2xl);
    position: relative;
}

/* Paper texture effect */
.landing-preview-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(61, 52, 44, 0.02) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
}

.landing-preview-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    position: relative;
}

.landing-preview-date {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
}

.landing-preview-mood {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    background: rgba(107, 143, 113, 0.12);
    color: var(--nuuko-green);
    border-radius: var(--radius-pill);
    font-weight: 500;
}

.landing-preview-prompt {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.08) 0%, rgba(154, 107, 81, 0.08) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    border-left: 3px solid rgba(107, 143, 113, 0.4);
    position: relative;
}

.landing-preview-prompt-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-preview-prompt-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--nuuko-stone);
    margin: 0;
}

.landing-preview-textarea {
    min-height: 120px;
    padding: var(--space-lg);
    background: rgba(253, 252, 249, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(141, 135, 126, 0.1);
    margin-bottom: var(--space-md);
    position: relative;
}

.landing-preview-writing {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--nuuko-espresso);
    margin: 0;
}

.landing-preview-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: var(--nuuko-green);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

.landing-preview-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--nuuko-stone);
}

.landing-preview-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.landing-preview-small {
    padding: var(--space-lg);
}

.landing-preview-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-md);
}

.landing-preview-mood-chart {
    height: 60px;
    margin-bottom: var(--space-sm);
}

.landing-mood-svg {
    width: 100%;
    height: 100%;
}

.landing-preview-mood-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--nuuko-stone);
}

/* Wrapped Preview Card */
.landing-preview-wrapped {
    background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);
    border: 1px solid rgba(154, 107, 81, 0.2);
}

.landing-preview-wrapped-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.landing-preview-wrapped-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--nuuko-stone);
}

.landing-preview-wrapped-month {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.landing-preview-wrapped-stat {
    margin-bottom: var(--space-md);
}

.landing-preview-wrapped-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    line-height: 1;
    display: block;
}

.landing-preview-wrapped-label {
    font-size: 0.9rem;
    color: var(--nuuko-stone);
}

.landing-preview-wrapped-insight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--nuuko-clay);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
}

/* === DEVICE MOCKUP SHOWCASE === */
.landing-device-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-3xl);
    padding: var(--space-2xl) 0;
}

.landing-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.landing-device-frame {
    position: relative;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.landing-device-main .landing-device-frame {
    width: 320px;
    height: 640px;
}

.landing-device-secondary .landing-device-frame {
    width: 280px;
    height: 560px;
    transform: translateY(40px);
}

.landing-device-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.landing-device-screen {
    width: 100%;
    height: 100%;
    background: var(--nuuko-cream);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.landing-device-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--nuuko-stone);
    text-align: center;
    margin: 0;
}

/* App Preview Styles */
.landing-app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--nuuko-cream);
}

.preview-nav {
    padding: 12px 16px;
    padding-top: 40px;
    background: rgba(253, 252, 249, 0.95);
    border-bottom: 1px solid rgba(141, 135, 126, 0.1);
}

.preview-nav-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
}

.preview-nav-logo img {
    width: 16px;
    height: 16px;
}

/* Write Preview Styles */
.preview-write-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.preview-write-header {
    text-align: center;
}

.preview-entry-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin: 0 0 4px;
}

.preview-entry-date {
    font-size: 0.75rem;
    color: var(--nuuko-stone);
    margin: 0;
}

.preview-prompt-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border-left: 3px solid rgba(107, 143, 113, 0.4);
}

.preview-prompt-icon {
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, rgba(107, 143, 113, 0.2) 0%, rgba(107, 143, 113, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-prompt-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.preview-prompt-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(61, 52, 44, 0.5);
}

.preview-prompt-question {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--nuuko-stone);
}

.preview-notebook {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
    padding-left: 32px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(61, 52, 44, 0.06);
}

.preview-notebook-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 22px,
        rgba(141, 135, 126, 0.08) 22px,
        rgba(141, 135, 126, 0.08) 23px
    );
    pointer-events: none;
}

.preview-notebook-margin {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: rgba(154, 107, 81, 0.15);
}

.preview-notebook-text {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    line-height: 23px;
    color: var(--nuuko-espresso);
    margin: 0;
    position: relative;
    z-index: 1;
}

.preview-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--nuuko-green);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

.preview-write-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.preview-mood-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(107, 143, 113, 0.12);
    color: var(--nuuko-green);
    border-radius: 20px;
    font-weight: 500;
}

.preview-word-count {
    font-size: 0.7rem;
    color: var(--nuuko-stone);
}

/* Patterns Preview Styles */
.preview-patterns-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.preview-patterns-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    text-align: center;
    margin: 0 0 4px;
}

.preview-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(61, 52, 44, 0.04);
}

.preview-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.preview-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
}

.preview-stat-value.preview-stat-green {
    color: var(--nuuko-green);
}

.preview-stat-label {
    font-size: 0.6rem;
    color: var(--nuuko-stone);
    text-transform: lowercase;
}

.preview-stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(141, 135, 126, 0.2);
}

.preview-mood-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(61, 52, 44, 0.04);
}

.preview-mood-header {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: 8px;
}

.preview-mood-heatmap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.preview-mood-day {
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.preview-mood-today {
    box-shadow: 0 0 0 2px var(--nuuko-espresso);
}

.preview-mood-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.55rem;
    color: var(--nuuko-stone);
}

.preview-wrapped-card {
    background: linear-gradient(135deg, #faf6f0 0%, #f5efe6 100%);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(154, 107, 81, 0.15);
}

.preview-wrapped-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.preview-wrapped-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nuuko-stone);
}

.preview-wrapped-month {
    font-family: var(--font-serif);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-wrapped-stat {
    margin-bottom: 8px;
}

.preview-wrapped-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    line-height: 1;
    display: block;
}

.preview-wrapped-label {
    font-size: 0.7rem;
    color: var(--nuuko-stone);
}

.preview-wrapped-insight {
    font-size: 0.65rem;
    color: var(--nuuko-clay);
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
}

/* Device Responsive */
@media (max-width: 900px) {
    .landing-device-showcase {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2xl);
    }

    .landing-device-secondary .landing-device-frame {
        transform: none;
    }

    .landing-device-main .landing-device-frame {
        width: 280px;
        height: 560px;
    }

    .landing-device-secondary .landing-device-frame {
        width: 260px;
        height: 520px;
    }
}

@media (max-width: 400px) {
    .landing-device-main .landing-device-frame,
    .landing-device-secondary .landing-device-frame {
        width: 240px;
        height: 480px;
    }

    .landing-device-frame {
        border-radius: 32px;
        padding: 10px;
    }

    .landing-device-screen {
        border-radius: 24px;
    }

    .landing-device-notch {
        width: 80px;
        height: 22px;
    }
}

/* === EXPERIENCE HIGHLIGHTS === */
.landing-experience-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(141, 135, 126, 0.1);
}

.landing-experience-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.landing-experience-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .landing-experience-highlights {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(141, 135, 126, 0.12);
    transition: all 0.3s var(--ease-gentle);
    box-shadow: 0 2px 8px rgba(61, 52, 44, 0.04);
}

.landing-experience-card:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(107, 143, 113, 0.2);
}

.landing-experience-visual {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.12) 0%, rgba(154, 107, 81, 0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nuuko-green);
}

.landing-experience-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.landing-experience-content h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin: 0;
}

.landing-experience-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--nuuko-stone);
    margin: 0;
}

/* === AUDIENCE SECTION === */
.landing-audience {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.landing-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (max-width: 900px) {
    .landing-audience-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-audience-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(141, 135, 126, 0.1);
    transition: all 0.3s var(--ease-gentle);
}

.landing-audience-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.landing-audience-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.landing-audience-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.landing-audience-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    margin: 0;
}

/* === FEATURES ROW === */
.landing-features {
    background: 
        linear-gradient(180deg, transparent 0%, rgba(107, 143, 113, 0.04) 50%, transparent 100%);
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

@media (max-width: 900px) {
    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .landing-features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.landing-feature {
    text-align: center;
    padding: var(--space-lg);
}

.landing-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(141, 135, 126, 0.1);
}

.landing-feature-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.85;
}

.landing-feature-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-xs);
}

.landing-feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--nuuko-stone);
    margin: 0;
}

/* === TESTIMONIALS === */
.landing-testimonials {
    background: linear-gradient(180deg, transparent 0%, rgba(154, 107, 81, 0.04) 50%, transparent 100%);
}

.landing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (max-width: 900px) {
    .landing-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-testimonial {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(141, 135, 126, 0.12);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.landing-testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: rgba(107, 143, 113, 0.15);
}

.landing-testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--nuuko-espresso);
    margin: 0 0 var(--space-lg);
    position: relative;
}

.landing-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.landing-testimonial-avatar {
    font-size: 1.25rem;
}

.landing-testimonial-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--nuuko-stone);
}

/* === WAITLIST SECTION === */
.landing-waitlist-section {
    background: linear-gradient(180deg, rgba(107, 143, 113, 0.08) 0%, rgba(107, 143, 113, 0.03) 100%);
    padding: var(--space-3xl) 0;
}

.landing-waitlist-card {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    border: 2px solid rgba(107, 143, 113, 0.2);
    box-shadow:
        var(--shadow-large),
        0 0 60px rgba(107, 143, 113, 0.1);
}

.landing-waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--nuuko-green) 0%, var(--nuuko-green-dark) 100%);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-waitlist-badge svg {
    flex-shrink: 0;
}

.landing-waitlist-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.landing-waitlist-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--nuuko-stone);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
}

.landing-waitlist-features-row {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.landing-waitlist-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(107, 143, 113, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--nuuko-green-dark);
}

.landing-waitlist-feature-chip svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Waitlist Form */
.landing-waitlist-form {
    padding-top: var(--space-lg);
}

.landing-waitlist-cta {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-md);
}

.landing-waitlist-input-group {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 480px;
    margin: 0 auto var(--space-md);
}

.landing-waitlist-input {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--nuuko-espresso);
    background: var(--nuuko-cream-light);
    border: 2px solid rgba(141, 135, 126, 0.2);
    border-radius: var(--radius-pill);
    outline: none;
    transition: all 0.2s var(--ease-gentle);
}

.landing-waitlist-input:focus {
    border-color: var(--nuuko-green);
    box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.15);
    background: white;
}

.landing-waitlist-input::placeholder {
    color: var(--nuuko-stone);
    opacity: 0.6;
}

.landing-waitlist-privacy {
    font-size: 0.8rem;
    color: var(--nuuko-stone);
    margin: 0;
    opacity: 0.8;
}

.landing-waitlist-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(141, 135, 126, 0.1);
    font-size: 0.85rem;
    color: var(--nuuko-stone);
}

.landing-waitlist-note svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Waitlist Success State */
.landing-waitlist-success {
    padding: var(--space-xl);
    animation: fadeInUp 0.4s var(--ease-gentle);
}

.landing-waitlist-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(107, 143, 113, 0.25) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nuuko-green);
}

.landing-waitlist-success h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-xs);
}

.landing-waitlist-success p {
    font-size: 0.95rem;
    color: var(--nuuko-stone);
    margin: 0;
}

@media (max-width: 500px) {
    .landing-waitlist-card {
        padding: var(--space-2xl) var(--space-lg);
    }

    .landing-waitlist-features-row {
        flex-direction: column;
        align-items: center;
    }

    .landing-waitlist-note {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .landing-waitlist-input-group {
        flex-direction: column;
    }

    .landing-waitlist-input {
        min-width: 100%;
    }

    .landing-waitlist-input-group .landing-btn {
        width: 100%;
    }
}

/* === FINAL CTA === */
.landing-cta {
    padding: var(--space-4xl) 0;
}

.landing-cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 239, 229, 0.98) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-2xl);
    text-align: center;
    border: 1px solid rgba(141, 135, 126, 0.15);
    box-shadow: 
        var(--shadow-large),
        inset 0 1px 2px rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.landing-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(107, 143, 113, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(154, 107, 81, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.landing-cta-feather {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, rgba(107, 143, 113, 0.15) 0%, rgba(154, 107, 81, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.landing-cta-feather img {
    animation: float 4s ease-in-out infinite;
}

.landing-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    color: var(--nuuko-espresso);
    margin-bottom: var(--space-md);
    position: relative;
}

.landing-cta-text {
    font-size: 1.125rem;
    color: var(--nuuko-stone);
    margin-bottom: var(--space-xl);
    position: relative;
}

.landing-cta .landing-btn {
    position: relative;
}

/* === FOOTER === */
.landing-footer {
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(141, 135, 126, 0.15);
    background: linear-gradient(180deg, transparent 0%, rgba(237, 231, 219, 0.5) 100%);
}

.landing-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

.landing-footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--nuuko-espresso);
}

.landing-footer-brand img {
    opacity: 0.7;
}

.landing-footer-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.landing-footer-links a {
    font-size: 0.9rem;
    color: var(--nuuko-stone);
    transition: color 0.2s var(--ease-gentle);
}

.landing-footer-links a:hover {
    color: var(--nuuko-green);
}

.landing-footer-tagline {
    font-size: 0.85rem;
    color: var(--nuuko-stone);
    font-style: italic;
    margin: 0;
}

/* === SECTION DIVIDERS === */
.section-divider {
    position: relative;
    height: 60px;
    margin-top: -30px;
    margin-bottom: -30px;
    z-index: 1;
    pointer-events: none;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* === SECTION DECORATIONS === */
.section-feather {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    animation: peekIn 0.6s ease-out forwards, float 4s ease-in-out infinite 0.6s;
}

.section-feather-left {
    left: -10px;
    top: 80px;
    transform: rotate(-15deg);
}

.section-feather-right {
    right: -10px;
    top: 100px;
    transform: rotate(15deg) scaleX(-1);
}

@media (max-width: 900px) {
    .section-feather {
        display: none;
    }
}

.section-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    color: var(--nuuko-green);
}

.section-deco-star {
    top: 60px;
    right: 15%;
    animation: twinkle 3s ease-in-out infinite;
}

.section-deco-leaf {
    bottom: 80px;
    left: 10%;
    animation: sway 4s ease-in-out infinite;
    transform-origin: bottom center;
}

.landing-section {
    position: relative;
}

/* === ANIMATIONS === */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-4px) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(107, 143, 113, 0.2);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(107, 143, 113, 0);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.9) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes peekIn {
    from {
        opacity: 0;
        transform: translateX(-20px) rotate(-15deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-15deg);
    }
}

/* === SCROLL ANIMATIONS === */
/* Disabled animations to prevent layout glitches on page load */
.landing-hero-content,
.landing-special-card,
.landing-preview-card,
.landing-audience-card,
.landing-feature,
.landing-testimonial {
    opacity: 1;
}

/* === UTILITY === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === RESPONSIVE FINE-TUNING === */
@media (max-width: 768px) {
    .landing-hero {
        min-height: auto;
        padding-top: calc(72px + var(--space-2xl));
        padding-bottom: var(--space-3xl);
    }
    
    .landing-hero-avatar {
        width: 120px;
        height: 120px;
    }
    
    .landing-hero-feather {
        width: 56px;
        height: 56px;
    }
    
    .landing-section {
        padding: var(--space-3xl) 0;
    }
    
    .landing-preview-main {
        padding: var(--space-lg);
    }
    
    .landing-cta-card {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* === PRINT STYLES === */
@media print {
    .landing-nav,
    .landing-btn,
    .landing-cta {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .landing-section {
        padding: 1rem 0;
    }
}
