/* ========================================
   Welcome Page - Clean Split Design (Light Mode Focus)
   ======================================== */

:root {
    --welcome-bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --brand-blue: #0265dc;
    /* Matching your M3 primary */
    --accent-light-blue: #EFF6FF;
    --border-color: #E5E7EB;
    --google-btn-border: #E5E7EB;

    --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--welcome-bg);
    color: var(--text-primary);
    overflow: hidden;
    /* Prevent scroll */
}

#root {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.welcome-container {
    width: 900px;
    height: 600px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    display: flex;
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* --- Left Column: Authentication --- */
.auth-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    background: white;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.app-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.value-prop-header {
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.01em;
}

.headline {
    font-size: 2.25rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 320px;
}

/* Toast Override */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border: 1px solid #E5E7EB;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-message {
    color: var(--text-primary);
    font-weight: 500;
}

/* Google Button */
.google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--google-btn-border);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.google-btn:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.google-btn.success {
    background: white;
    border-color: #10B981;
    color: #10B981;
}

.google-btn.success:hover {
    background: #ecfdf5;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.divider span {
    padding: 0 16px;
}

.guest-link {
    background: none;
    border: none;
    color: var(--brand-blue);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: opacity 0.2s;
}

.guest-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-info {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #9CA3AF;
    padding-top: 40px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    display: flex;
}

.footer-left {
    justify-content: flex-start;
}

.footer-center {
    justify-content: center;
}

.footer-right {
    justify-content: flex-end;
}

.logout-btn {
    color: #EF4444;
}

.logout-icon {
    font-size: 1.2rem;
}

.help-link {
    color: #6B7280;
    text-decoration: underline;
    cursor: pointer;
}


/* --- Right Column: Onboarding / Pinning --- */
.onboarding-section {
    flex: 1;
    background-color: #F0F9FF;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.badge {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    align-self: flex-start;
}

.badge.success {
    background-color: #DCFCE7;
    color: #166534;
}

.onboarding-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.onboarding-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 320px;
}



@keyframes miniCursor {
    0% {
        left: 10%;
        top: 50%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    40% {
        left: 35%;
        top: 50%;
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    /* Click puzzle */
    60% {
        transform: scale(1);
    }

    80% {
        left: 75%;
        top: 50%;
        transform: scale(1);
    }

    90% {
        transform: scale(0.8);
    }

    /* Click pin */
    100% {
        opacity: 0;
    }
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.platform-item {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.platform-item img {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.success-message {
    margin-top: 16px;
    color: #10B981;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mock Browser UI Elements */
.step-row {
    display: flex;
    gap: 16px;
}

.step-num {
    width: 24px;
    height: 24px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.mock-browser-toolbar {
    background: #F3F4F6;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8px;
    gap: 8px;
    position: relative;
}

.mock-url-bar {
    position: absolute;
    left: 8px;
    height: 12px;
    width: 60%;
    background: #E5E7EB;
    border-radius: 4px;
}

.puzzle-icon,
.pin-icon {
    width: 16px;
    height: 16px;
    fill: #6B7280;
}

.puzzle-icon.active {
    fill: var(--text-primary);
}

.cursor-pointer {
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233B82F6'%3E%3Cpath d='M3.5 3.5L9.5 20.5L13.5 13.5L20.5 9.5L3.5 3.5Z' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    position: absolute;
    right: 4px;
    bottom: -4px;
    background-repeat: no-repeat;
}

.mock-menu {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    margin-top: 8px;
    overflow: hidden;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 12px;
}

.menu-item.highlight {
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.app-icon-small {
    width: 16px;
    height: 16px;
    background: var(--brand-blue);
    border-radius: 2px;
}

.app-name-small {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 500;
}

.pin-icon.blue {
    fill: var(--brand-blue);
}

/* Cursor & Interaction Animation */
.visual-card {
    position: relative;
    /* Ensure absolute children are contained */
}

/* The Cursor */
.animated-cursor {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M7 2L15 19L19 12L24 9L7 2Z' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 20;
    pointer-events: none;
    top: 0;
    left: 0;
    /* Rotation to make it look like a pointer */
    transform: rotate(-15deg);

    /* Animation Loop */
    animation: cursorLoop 4s infinite ease-in-out;
}

/* Keyframes for Cursor Movement */
@keyframes cursorLoop {
    0% {
        top: 80px;
        left: 200px;
        transform: scale(1) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    /* Move to Puzzle Icon (Step 1) */
    25% {
        top: 60px;
        /* Approx Y for Step 1 Toolbar Icon */
        left: 280px;
        /* Approx X for Step 1 Toolbar Icon */
        transform: scale(1) rotate(0deg);
    }

    /* Click Effect */
    30% {
        transform: scale(0.85) rotate(0deg);
    }

    35% {
        transform: scale(1) rotate(0deg);
    }

    /* Move to Pin Icon (Step 2) */
    50% {
        top: 155px;
        /* Approx Y for Step 2 Pin Icon */
        left: 280px;
        /* Aligned X */
        transform: scale(1) rotate(0deg);
    }

    /* Click Effect */
    55% {
        transform: scale(0.85) rotate(0deg);
    }

    60% {
        transform: scale(1) rotate(0deg);
    }

    /* Hover/Wait */
    80% {
        opacity: 1;
    }

    /* Reset */
    90% {
        opacity: 0;
    }

    100% {
        top: 80px;
        left: 200px;
        opacity: 0;
    }
}

/* Puzzle Icon Animation */
.target-puzzle {
    animation: puzzleClick 4s infinite;
}

@keyframes puzzleClick {

    0%,
    29% {
        fill: #6B7280;
        transform: scale(1);
    }

    30% {
        fill: #374151;
        transform: scale(0.9);
    }

    35%,
    100% {
        fill: #6B7280;
        transform: scale(1);
    }
}

/* Pin Icon Animation - Turns Blue */
.target-pin {
    animation: pinActivate 4s infinite;
}

@keyframes pinActivate {

    0%,
    54% {
        fill: #6B7280;
    }

    /* Grey start */
    55% {
        fill: var(--brand-blue);
        transform: scale(1.1);
    }

    /* Click -> Blue */
    65% {
        transform: scale(1);
    }

    90% {
        fill: var(--brand-blue);
    }

    100% {
        fill: #6B7280;
    }

    /* Reset */
}

/* Touch/Click Ripple Effect (Magnified Glass Simulation) */
.animated-cursor::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(2, 101, 220, 0.2);
    border: 1px solid rgba(2, 101, 220, 0.4);
    opacity: 0;
    transform: scale(0.5);
    animation: clickRipple 4s infinite;
}

@keyframes clickRipple {

    0%,
    28% {
        opacity: 0;
        transform: scale(0.5);
    }

    30% {
        opacity: 1;
        transform: scale(1.2);
    }

    /* Use ripple at click 1 */
    35% {
        opacity: 0;
        transform: scale(1.5);
    }

    53% {
        opacity: 0;
        transform: scale(0.5);
    }

    55% {
        opacity: 1;
        transform: scale(1.2);
    }

    /* Use ripple at click 2 */
    60% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
    }
}

/* --- Layout Transitions --- */
.welcome-container.final-stage {
    /* Container expands or just smooths out */
}

.setup-container {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    display: flex;
}

.setup-container.expanded-mode {
    flex: 1;
}

.setup-container.sidebar-mode {
    flex: 0 0 80px;
    width: 80px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: white;
    border-right: 1px solid #F3F4F6;
    cursor: pointer;
}

.setup-wrapper {
    flex: 1;
    display: flex;
    width: 100%;
}

.auth-section,
.onboarding-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    transition: opacity 0.3s ease;
}

.onboarding-section {
    background-color: #F0F9FF;
}

/* Sidebar Content Styling */
.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 0.8s ease;
}

.sidebar-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1rem;
    font-weight: 600;
    color: #9CA3AF;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.user-active {
    background-color: #E5E7EB;
    /* Placeholder for user icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.pin-active {
    background-color: #DBEAFE;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231E40AF'%3E%3Cpath d='M16 9V4l1 0c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1l1 0v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z'/%3E%3C/svg%3E");
}

/* Dashboard Section Styles */
.dashboard-section {
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    background: white;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

.setup-container {
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
    background: white;
    overflow: hidden !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dashboard-section.expanded-mode,
.setup-container.expanded-mode {
    flex: 10;
    /* Grow to fill */
    cursor: default;
}

.dashboard-section.sidebar-mode,
.setup-container.sidebar-mode {
    flex: 0 0 80px;
    /* Collapse to fixed width */
    width: 80px;
    padding: 0;
    cursor: pointer;
    background: #F9FAFB;
    border-left: 1px solid #F3F4F6;
}

.dashboard-section.sidebar-mode:hover,
.setup-container.sidebar-mode:hover {
    background: #F3F4F6;
}

/* Dashboard Content Wrapper */
.dashboard-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid-active {
    background-color: #F3F4F6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234B5563'%3E%3Cpath d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
}

/* Ensure Expanded Mode Overrides for Auth/Pin too */
.auth-section.expanded-mode,
.onboarding-section.expanded-mode {
    flex: 1;
    cursor: default;
}

.auth-section.sidebar-mode,
.onboarding-section.sidebar-mode {
    cursor: pointer;
}

.auth-section.sidebar-mode:hover,
.onboarding-section.sidebar-mode:hover {
    background-color: #F3F4F6;
    /* Visual feedback for clickable sidebar */
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dashboard-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    /* For connector/particle positioning */
}

/* New Grid Card Styles (Flex with Image/Label) */
.grid-card {
    width: 120px;
    height: 120px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.grid-card:hover {
    transform: translateY(-4px);
    background-color: white;
    border-color: var(--brand-blue);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.grid-logo {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
}

.grid-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.grid-card.placeholder {
    background: #F3F4F6;
    border: none;
    cursor: default;
    opacity: 0.5;
}

.grid-card.placeholder:hover {
    transform: none;
    box-shadow: none;
    background: #F3F4F6;
}

/* --- Data Movement Animations --- */
.grid-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Vertical & Horizontal Connector Lines (Subtle) */
.connector-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(2, 101, 220, 0.1), transparent);
    height: 1px;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.connector-line.vertical {
    background: linear-gradient(180deg, transparent, rgba(2, 101, 220, 0.1), transparent);
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--brand-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-blue), 0 0 20px rgba(2, 101, 220, 0.4);
    opacity: 0;
}

/* Particle 1: ChatGPT -> Claude (Horizontal Top) */
.p1 {
    animation: moveH1 4s infinite linear;
}

@keyframes moveH1 {
    0% {
        left: 12.5%;
        top: 25%;
        opacity: 0;
        transform: scale(0.5);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    40% {
        left: 37.5%;
        top: 25%;
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        left: 37.5%;
        top: 25%;
        opacity: 0;
    }
}

/* Particle 2: Claude -> Gemini (Horizontal Top) */
.p2 {
    animation: moveH2 4s infinite linear 1s;
}

@keyframes moveH2 {
    0% {
        left: 37.5%;
        top: 25%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        left: 62.5%;
        top: 25%;
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        left: 62.5%;
        top: 25%;
        opacity: 0;
    }
}

/* Particle 3: Perplexity -> ChatGPT (Vertical Left) */
.p3 {
    animation: moveV1 5s infinite linear 0.5s;
}

@keyframes moveV1 {
    0% {
        left: 87.5%;
        top: 25%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        left: 12.5%;
        top: 25%;
        opacity: 1;
    }

    90% {
        left: 12.5%;
        top: 75%;
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Particle 4: Gemini -> Perplexity (Down) */
.p4 {
    animation: moveD1 6s infinite linear 2s;
}

@keyframes moveD1 {
    0% {
        left: 62.5%;
        top: 25%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        left: 87.5%;
        top: 75%;
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.dashboard-footer {
    font-size: 0.7rem;
    color: #9CA3AF;
    margin-top: auto;
}

/* --- Landing Section (Section 0) --- */
.landing-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 20px;
    text-align: center;
}

.landing-content {
    max-width: 800px;
    width: 100%;
}

.brand-header.center {
    justify-content: center;
    margin-bottom: 40px;
}

.landing-headline {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.landing-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.landing-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.google-btn.primary {
    background: var(--brand-blue);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    height: auto;
    border: none;
    box-shadow: 0 10px 20px rgba(2, 101, 220, 0.2);
}

.google-btn.primary:hover {
    background: #0052b4;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(2, 101, 220, 0.3);
}

.google-btn.primary img {
    filter: brightness(0) invert(1);
    width: 24px;
    height: 24px;
}

.cta-note {
    font-size: 0.9rem;
    color: #9CA3AF;
}

.landing-preview-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0.6;
}

.preview-card-mini {
    padding: 8px 16px;
    background: #F3F4F6;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4B5563;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .landing-headline {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .setup-container.sidebar-mode {
        display: none;
    }
}