/* Landing Page - Modern, Conversion-Focused Design */

/* ===== LANDING PAGE BACKGROUND OVERRIDE ===== */
.landing {
    position: relative;
    background: #0f172a;
    overflow-x: hidden;
    max-width: 100vw;
}

.landing section > .container {
    width: 100%;
}

/* Override the global gradient for landing page */
body:has(.landing) {
    background: #0f172a;
}

body:has(.landing)::before {
    display: none;
}

html:has(.landing)::before {
    display: none;
}

html, body {
    overflow-x: hidden;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== VARIABLES ===== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;

    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.25rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3.5rem;

    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0 0;
}

/* Match header background to hero section on landing page */
body:has(.landing) .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.header .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
}

.logo-text {
    color: var(--white);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--slate-300);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--white);
}

.btn-header {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.btn-hero {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-plan {
    width: 100%;
    margin-top: var(--spacing-md);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: #111827;
    background-image: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.2) 100%);
    margin-top: calc(-1rem - 100px);
    padding-top: calc(5rem + 1rem + 100px);
    overflow-x: hidden;
    position: relative;
}

/* Extend hero background to cover the header area */
.hero-section::before {
    content: '';
    position: absolute;
    top: calc(-5rem - 100px);
    left: 0;
    right: 0;
    height: calc(5rem + 100px + 50px);
    background: #111827;
    background-image: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.2) 100%);
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.badge-brand {
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.badge-separator {
    color: var(--primary-light);
    font-weight: 400;
    font-size: 1.25rem;
}

.badge-text {
    color: var(--slate-300);
    font-weight: 500;
    font-size: 1.125rem;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--slate-300);
    margin-bottom: var(--spacing-xl);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subheadline strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

.hero-cta-note {
    margin-top: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--slate-400);
}

/* ===== CORE FEATURES ===== */
.core-features-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.core-features-visual {
    max-width: 900px;
    margin: 0 auto;
}

.services-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
}

.diagram-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.diagram-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    text-align: center;
    padding-bottom: 0.5rem;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

.service-icon {
    font-size: 1.5rem;
}

.service-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.arrow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.6) 100%);
}

.arrow-head {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.dashboard-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius-lg);
    min-width: 200px;
    transition: all 0.3s;
}

.dashboard-box:hover {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.dashboard-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.dashboard-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.dashboard-subtitle {
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
}

.dashboard-feature {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 600;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Outputs column */
.outputs-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.output-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.output-box:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateX(4px);
}

.output-box .service-logo svg {
    color: #10b981;
    stroke: #10b981;
}

/* ===== DAILY BRIEFING SECTION ===== */
.daily-briefing-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.06) 50%, transparent 100%);
}

/* ===== EMAIL PREVIEW SECTION ===== */
section.email-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.email-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.email-section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.email-section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Notification Channels */
.notification-channels {
    margin-top: 48px;
    text-align: center;
}

.channels-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
}

.channels-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.channel-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.channel-item.coming-soon {
    opacity: 0.6;
}

.coming-soon-badge {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

/* iPhone Frame */
.iphone-frame {
    width: 375px;
    height: 750px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0,0,0,0.6),
        0 30px 60px -30px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.05),
        0 0 0 1px rgba(0,0,0,0.8),
        0 0 80px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.ios-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px 8px;
    background: #fff;
    border-radius: 38px 38px 0 0;
    position: relative;
    flex-shrink: 0;
}

.ios-time {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
}

.ios-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
}

.ios-signal, .ios-wifi {
    opacity: 0.9;
}

.ios-battery {
    width: 25px;
    height: 12px;
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 3px;
    padding: 1px;
    position: relative;
}

.ios-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 6px;
    background: rgba(0,0,0,0.5);
    border-radius: 0 1px 1px 0;
}

.ios-battery-level {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 1px;
}

/* Gmail iOS App Container */
.gmail-ios {
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    min-height: 0;
}

.gmail-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 4px;
    border-bottom: 1px solid #e8eaed;
    flex-shrink: 0;
}

.gmail-back {
    border: none;
    background: transparent;
    padding: 8px;
    color: #5f6368;
    cursor: pointer;
}

.gmail-toolbar-actions {
    display: flex;
    gap: 4px;
}

.gmail-action {
    border: none;
    background: transparent;
    padding: 8px;
    color: #5f6368;
    cursor: pointer;
}

/* Subject Row */
.gmail-subject-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 16px 8px;
    gap: 12px;
    background: #fff;
}

.gmail-subject-text {
    flex: 1;
}

.gmail-subject-title {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #202124;
    line-height: 1.3;
    font-family: 'Google Sans', -apple-system, sans-serif;
    letter-spacing: -0.3px;
}

.gmail-inbox-label {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    padding: 2px 6px;
    background: #e8eaed;
    border-radius: 4px;
    color: #5f6368;
    font-weight: 500;
}

.gmail-star {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Sender Row */
.gmail-sender {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 12px;
    border-bottom: 1px solid #e8eaed;
    background: #fff;
}

.gmail-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.gmail-avatar img {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    margin-right: 2px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.gmail-sender-details {
    flex: 1;
    min-width: 0;
}

.gmail-sender-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.gmail-sender-name {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.gmail-date {
    font-size: 12px;
    color: #5f6368;
}

.gmail-to {
    font-size: 12px;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.gmail-sender-actions {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.gmail-action-sm {
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
}

/* Scrollable Email Content */
.gmail-content-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    background: #f8fafc;
}

.gmail-content-scroll::-webkit-scrollbar {
    width: 4px;
}

.gmail-content-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.gmail-content-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.gmail-content-scroll::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.email-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.email-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.email-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 12px;
    background: #f8fafc;
}

.email-metric-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.email-metric-box:first-child {
    border-left: 3px solid #667eea;
}

.email-metric-box:nth-child(2) {
    border-left: 3px solid #22c55e;
}

.email-metric-box:nth-child(3) {
    border-left: 3px solid #f59e0b;
}

.email-metric-box:nth-child(4) {
    border-left: 3px solid #3b82f6;
}

.email-metric-box .metric-label {
    display: block;
    font-size: 9px;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 4px;
    line-height: 1.3;
    font-weight: 600;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-metric-box .metric-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a !important;
    letter-spacing: -0.5px;
}

.email-section {
    padding: 10px 14px;
    background: #fff;
}

.email-section:first-of-type {
    padding-top: 12px;
}

.email-section + .email-section {
    border-top: 1px solid #f1f5f9;
    padding-top: 10px;
}

.email-content-header {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.email-content-header::before {
    content: '';
    width: 3px;
    height: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.email-date-note {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
    font-size: 11px;
}

.email-insight {
    padding: 10px 12px 10px 12px;
    margin-bottom: 6px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 8px;
    border-left: 4px solid;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.email-insight:last-child {
    margin-bottom: 0;
}

.email-insight.blue {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-color: #3b82f6;
    color: #1e40af;
}

.email-insight.yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
    color: #92400e;
}

.email-insight.green {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: #22c55e;
    color: #166534;
}

.email-insight strong {
    font-weight: 700;
    color: inherit;
}

.email-resource {
    font-size: 13px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.email-resource:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.email-resource p {
    color: #334155;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.email-mock-link {
    color: #667eea;
    text-decoration: none;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.email-mock-link::after {
    content: "→";
    font-size: 14px;
}

/* Email Table Styles */
.email-table {
    font-size: 12px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}

.email-table-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    background: #f1f5f9;
}

.email-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
    transition: background 0.15s ease;
}

.email-table-row:last-child {
    border-bottom: none;
}

.email-table-name {
    color: #1e293b;
    font-size: 12px;
    font-weight: 500;
}

.email-table-date,
.email-table-value {
    color: #64748b;
    font-size: 11px;
    white-space: nowrap;
}

.email-table-value {
    font-weight: 600;
    color: #475569;
}

.signup-status {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.signup-status.trialing {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    color: #1d4ed8;
}

.signup-status.active {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    color: #166534;
}

.traffic-table .email-table-name {
    font-size: 11px;
}

/* Reading Items */
.email-reading-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.email-reading-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reading-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reading-text {
    font-size: 11px;
    color: #475569;
    line-height: 1.4;
}

.reading-source-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reading-platform-icon {
    width: 14px;
    height: 14px;
}

.reading-source-title {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
}

/* Traffic List */
.email-traffic-list {
    display: flex;
    flex-direction: column;
}

.email-traffic-row {
    display: flex;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f1f5f9;
}

.email-traffic-row:last-child {
    border-bottom: none;
}

.traffic-source-icon {
    font-size: 12px;
    margin-right: 8px;
}

.traffic-source-name {
    font-size: 12px;
    color: #1e293b;
    flex: 1;
}

.traffic-source-value {
    display: flex;
    align-items: center;
    gap: 4px;
}

.traffic-count {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
    min-width: 28px;
    text-align: right;
}

.traffic-trend {
    font-size: 10px;
    font-weight: 500;
    min-width: 40px;
    text-align: right;
}

.traffic-trend.trend-up {
    color: #16a34a;
}

.email-cta-btn {
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    margin: 12px 16px;
    cursor: default;
    user-select: none;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
    letter-spacing: 0.2px;
}

.email-footer-link {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 14px 16px;
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
}

.email-footer-link a {
    color: #667eea;
    text-decoration: none;
}

.email-footer-link p {
    margin: 8px 0 0 0;
}

/* Gmail Bottom Bar */
.gmail-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-top: 1px solid #e8eaed;
    background: #fff;
    flex-shrink: 0;
}

.gmail-reply-btn,
.gmail-forward-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 1px solid #dadce0;
    border-radius: 18px;
    background: #fff;
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.gmail-emoji-btn {
    padding: 8px;
    border: none;
    background: transparent;
    color: #5f6368;
    cursor: pointer;
}

/* iPhone Home Indicator */
.iphone-home-indicator {
    width: 134px;
    height: 5px;
    background: #d1d5db;
    border-radius: 3px;
    margin: 6px auto 8px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 420px) {
    .iphone-frame {
        width: 100%;
        max-width: 375px;
        height: auto;
        aspect-ratio: 375 / 750;
        border-radius: 40px;
        padding: 10px;
    }

    .iphone-notch {
        width: 100px;
        height: 28px;
    }

    .ios-status-bar {
        border-radius: 30px 30px 0 0;
        padding: 12px 20px 6px;
    }

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.2s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--slate-300);
}

/* ===== SOCIAL PROOF ===== */
.social-proof-section {
    padding: var(--spacing-2xl) 0;
}

.social-proof-header {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: var(--spacing-lg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.2s;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--slate-400);
}

/* ===== PROBLEM/SOLUTION ===== */
.problem-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.problem-card,
.solution-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
}

.solution-card {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.problem-icon,
.solution-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3,
.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--slate-300);
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--warning);
    font-weight: 700;
    font-size: 1.5rem;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ===== SECTION HEADERS ===== */
.section-header-center {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--slate-300);
    margin-top: var(--spacing-sm);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-header {
    padding: var(--spacing-2xl) 0 var(--spacing-sm);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, rgba(251, 146, 60, 0.04) 100%);
}

/* ===== DASHBOARD EXAMPLES SECTION ===== */
.dashboard-examples-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.04) 0%, rgba(251, 113, 133, 0.08) 100%);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

/* Signal Card - Dashboard Style */
.signal-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    color: var(--white);
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.signal-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.signal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* MRR Grid */
.mrr-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mrr-section {
    padding: 1.5rem;
}

.mrr-section:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mrr-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mrr-label {
    font-size: 0.875rem;
    color: var(--slate-300);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.mrr-growth {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.mrr-growth-positive span:first-child {
    color: #10b981;
}

.mrr-growth-positive span:nth-child(2) {
    color: #6ee7b7;
}

.mrr-subs-row {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.mrr-subs-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mrr-subs-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.mrr-subs-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    font-weight: 500;
}

/* Traffic Channels - Minimal Style */
.minimal-traffic-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.minimal-channel-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-channel-row:last-child {
    border-bottom: none;
}

.minimal-channel-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.minimal-channel-emoji {
    font-size: 0.875rem;
    opacity: 0.8;
}

.minimal-channel-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.minimal-channel-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* AI Insights - Dashboard Style */
.insights-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.overnight-event {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.insight-bubble {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.insight-bubble:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.event-text {
    color: var(--slate-200);
    font-size: 0.875rem;
    line-height: 1.6;
}

.event-text strong {
    color: #60a5fa;
    font-weight: 700;
}

.event-text em {
    color: #34d399;
    font-style: normal;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.insight-icon-wrapper {
    display: flex;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.event-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.overnight-event.positive .event-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.overnight-event.neutral .event-icon {
    background: rgba(107, 114, 128, 0.1);
    border-color: rgba(107, 114, 128, 0.3);
}

/* AI Insights Subsections */
.insights-subsection {
    margin-bottom: 1.5rem;
}

.insights-subsection:last-child {
    margin-bottom: 0;
}

.insights-subsection-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Reddit Insights Styles */
.insight-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.insight-type-badge,
.insight-relevance-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: lowercase;
}

.insight-type-badge.feedback {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.insight-type-badge.question {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.insight-type-badge.mention {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.insight-type-badge.discussion {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.insight-relevance-badge.high {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.insight-relevance-badge.medium {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.insight-relevance-badge.low {
    background: rgba(148, 163, 184, 0.15);
    color: var(--slate-400);
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--slate-400);
}

.insight-source {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.insight-source svg {
    opacity: 0.5;
}

.insight-engagement {
    color: var(--slate-500);
    font-weight: 500;
}

/* Landing Page - New Dashboard Preview Styles */
.landing-revenue-block {
    padding: 0.5rem 0;
}

.landing-mrr-hero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-mrr-label {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.landing-revenue-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-revenue-stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.landing-stat-label {
    font-size: 0.7rem;
    color: var(--slate-500);
    text-transform: uppercase;
}

.landing-stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.landing-stat-divider {
    color: var(--slate-600);
    font-size: 0.75rem;
}

.landing-subs-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-subs-item {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.landing-subs-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.landing-subs-label {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* Top Customers / Top Sources Lists */
.landing-top-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-top-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-top-item:last-child {
    border-bottom: none;
}

.landing-rank-badge {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.landing-rank-1 {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(234, 179, 8, 0.1));
    color: #fbbf24;
}

.landing-rank-1-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    color: #60a5fa;
}

.landing-source-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.landing-top-info {
    flex: 1;
    min-width: 0;
}

.landing-top-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landing-top-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
    flex-shrink: 0;
}

.landing-top-visitors {
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    flex-shrink: 0;
}

/* What Happened Insights */
/* Date badge in signal header */
.landing-date-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* What's Happening Insights - Dashboard style */
.landing-insights-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-insight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3b82f6;
    border-radius: 10px;
    transition: all 0.15s ease;
}

.landing-insight-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.landing-insight-positive {
    border-left-color: #10b981;
}

.landing-insight-neutral {
    border-left-color: #3b82f6;
}

.landing-insight-warning {
    border-left-color: #f59e0b;
}

.landing-insight-item:hover.landing-insight-positive {
    border-left-color: #34d399;
}

.landing-insight-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

/* Inline source row with icons */
.landing-insight-source-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Source badge (icon + label together) */
.landing-insight-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.landing-insight-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.landing-insight-source-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.landing-insight-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.landing-insight-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.landing-insight-text em {
    color: #93c5fd;
    font-style: italic;
}

/* Recommended Reading - Dashboard style */
.landing-resources-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-resource-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.landing-resource-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.landing-resource-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-resource-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.landing-resource-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.landing-resource-card:hover .landing-resource-text {
    color: #e2e8f0;
}

.landing-resource-source-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-resource-source-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.landing-resource-source-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.landing-resource-source {
    font-size: 0.8rem;
    font-weight: 500;
    color: #60a5fa;
}

.landing-resource-card:hover .landing-resource-source {
    color: #93c5fd;
}

.landing-resource-arrow {
    flex-shrink: 0;
    color: #64748b;
    transition: all 0.15s ease;
}

.landing-resource-card:hover .landing-resource-arrow {
    color: #60a5fa;
    transform: translateX(2px);
}

/* Traffic Sources (Yesterday) */
.landing-traffic-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.landing-traffic-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landing-traffic-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-traffic-row:last-child {
    border-bottom: none;
}

.landing-traffic-info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.landing-traffic-icon {
    font-size: 0.9rem;
}

.landing-traffic-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.landing-traffic-stats {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.landing-traffic-count {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    min-width: 36px;
    text-align: right;
}

.landing-traffic-trend {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    min-width: 48px;
    text-align: center;
}

.landing-traffic-trend.positive {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.landing-traffic-trend.negative {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.landing-traffic-trend:not(.positive):not(.negative) {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

/* Dashboard Preview Styles */
.dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.dashboard-metric {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
}

.metric-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.375rem;
}

.metric-change.positive {
    color: var(--success);
}

/* AI Insights Preview Styles */
.ai-insights-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.ai-insight-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    text-align: left;
}

.ai-insight-card.insight-success {
    border-left: 3px solid var(--success);
}

.ai-insight-card.insight-warning {
    border-left: 3px solid var(--warning);
}

.insight-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.insight-text {
    font-size: 0.9375rem;
    color: var(--slate-300);
    line-height: 1.5;
}

/* Chat Preview Styles */
.chat-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
}

.chat-message {
    display: flex;
}

.chat-message.user-message {
    justify-content: flex-end;
}

.chat-message.ai-message {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 90%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.user-message .message-bubble {
    background: var(--primary);
    color: var(--white);
    border-radius: 12px 12px 2px 12px;
}

.ai-message .message-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--slate-300);
    border-radius: 12px 12px 12px 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-300);
    margin-bottom: var(--spacing-md);
}

.step-visual {
    margin-top: var(--spacing-md);
}

.integration-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
}

.integration-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--slate-300);
    font-size: 0.8125rem;
    font-weight: 500;
}

.integration-badge-small .badge-icon {
    font-size: 1rem;
    line-height: 1;
}

.integration-badge-small .badge-text {
    line-height: 1;
}

.insight-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.insight-preview-item {
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: var(--slate-300);
    font-size: 0.9375rem;
    text-align: left;
}

.outcome-badge {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.75rem;
    color: var(--success);
    font-weight: 700;
    font-size: 1.125rem;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview-section {
    padding: var(--spacing-3xl) 0;
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.dashboard-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.featured-card {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.card-icon {
    font-size: 1.75rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.card-content {
    color: var(--slate-300);
}

.metric-display {
    margin-bottom: var(--spacing-md);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    font-size: 0.9375rem;
    color: var(--slate-400);
    margin-top: 0.5rem;
}

.metric-badge {
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.metric-badge.positive {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.card-detail {
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
}

.detail-label {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.traffic-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.traffic-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
}

.traffic-source {
    color: var(--white);
    font-weight: 500;
}

.traffic-count {
    color: var(--success);
    font-weight: 700;
}

.ai-insight-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.ai-insight {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
}

.insight-priority {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-text {
    flex: 1;
}

.insight-action {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.insight-reason {
    color: var(--slate-400);
    font-size: 0.8125rem;
}

/* ===== AI CHAT ===== */
.ai-chat-section {
    padding: var(--spacing-3xl) 0;
}

.chat-demo-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.chat-demo {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.chat-message {
}

.user-message {
    align-self: flex-end;
    max-width: 80%;
}

.ai-message {
    align-self: flex-start;
    max-width: 90%;
}

.message-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    margin-bottom: 0.375rem;
}

.message-text {
    color: var(--white);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.chat-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.features-list li {
    padding: 0.625rem 0;
    color: var(--slate-300);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.check-icon {
    color: var(--success);
    font-weight: 700;
}

.chat-note {
    padding: var(--spacing-md);
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    color: var(--slate-300);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.12) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Pricing page without header - add top spacing */
body[data-authenticated="true"] .pricing-section {
    padding-top: var(--spacing-3xl);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    position: relative;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.featured-plan {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
}

.plan-header {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.plan-subtitle {
    font-size: 0.8125rem;
    color: var(--slate-400);
    margin-bottom: var(--spacing-md);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.plan-description {
    color: var(--slate-300);
    font-size: 0.8125rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--slate-300);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-x {
    color: rgba(239, 68, 68, 0.7);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-limited {
    color: var(--slate-400);
}

.starter-plan {
    opacity: 0.85;
}

.plan-note {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--slate-400);
}

.pricing-alert {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.pricing-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.pricing-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.pricing-alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.plan-badge-current {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.current-plan {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.03);
}

/* ===== FINAL CTA ===== */
.final-cta-section {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02) 0%, rgba(219, 39, 119, 0.04) 100%);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-subheadline {
    font-size: 1rem;
    color: var(--slate-300);
    margin-bottom: var(--spacing-lg);
}

.cta-note {
    margin-top: var(--spacing-sm);
    font-size: 0.9375rem;
    color: var(--slate-400);
}

/* ===== CHAT SECTION ===== */
.chat-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(168, 85, 247, 0.12) 100%);
}

.chat-feature-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    max-width: 900px;
    margin: 0 auto;
    margin-top: var(--spacing-2xl);
}

.chat-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.benefit-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--slate-400);
    margin-top: 0.25rem;
}

.chat-benefit-item {
    display: flex;
    gap: var(--spacing-md);
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.6;
}

.chat-demo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    width: 100%;
    max-width: 500px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.chat-header-icon {
    font-size: 1.25rem;
}

.chat-header-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
}

.user-message {
    justify-content: flex-end;
}

.ai-message {
    justify-content: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.message-bubble {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.user-message .message-bubble {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.ai-message .message-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-bottom-left-radius: 0.25rem;
}

.ai-message .message-bubble p {
    margin-bottom: 0.75rem;
}

.ai-message .message-bubble p:last-child {
    margin-bottom: 0;
}

.ai-message .message-bubble ul,
.ai-message .message-bubble ol {
    margin: 0.5rem 0 0.75rem 1.25rem;
    padding: 0;
}

.ai-message .message-bubble li {
    margin-bottom: 0.5rem;
    color: var(--slate-300);
}

.ai-message .message-bubble li:last-child {
    margin-bottom: 0;
}

.ai-message .message-bubble strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== NOTIFICATIONS SECTION ===== */
.notifications-section {
    padding: var(--spacing-3xl) 0;
}

.notifications-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    max-width: 1000px;
    margin: 0 auto;
    margin-top: var(--spacing-2xl);
}

.notification-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.notification-option {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.notification-option:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.3);
    transform: translateY(-2px);
}

.notification-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
}

.slack-icon {
    background: rgba(255, 255, 255, 0.05);
}

.email-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
}

.notification-option-content {
    flex: 1;
}

.notification-option-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.notification-option-description {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.5;
}

.notification-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-preview-card {
    width: 100%;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.notification-preview-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-preview-icon {
    font-size: 1.25rem;
}

.notification-preview-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.notification-preview-time {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.notification-preview-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-preview-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.notification-preview-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-preview-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    margin-bottom: 0.5rem;
}

.notification-preview-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.notification-preview-growth {
    color: #10b981;
    font-weight: 700;
}

.notification-preview-insight {
    font-size: 0.9375rem;
    color: var(--slate-300);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.125rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--slate-300);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-link {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .chat-demo-container {
        grid-template-columns: 1fr;
    }

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

    .services-diagram {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .connector {
        flex-direction: row;
    }

    .arrow-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.6) 100%);
    }

    .arrow-head {
        transform: rotate(90deg);
    }

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

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-headline {
        font-size: 2rem;
    }

    .header {
        padding: 0.75rem 0 0;
    }

    .header .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .header-left {
        padding: 0.625rem 1rem;
        gap: 1.5rem;
    }

    .header-nav {
        gap: 1.5rem;
    }

    .nav-link {
        display: none;
    }

    .btn-header {
        font-size: 0.875rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .steps-grid,
    .dashboard-grid,
    .testimonial-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .metric-value {
        font-size: 1.25rem;
    }

    .message-bubble {
        max-width: 90%;
        font-size: 0.875rem;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .example-value {
        font-size: 1.25rem;
    }

    /* Dashboard components mobile */
    .signal-card {
        padding: 1.25rem;
    }

    .mrr-section {
        padding: 1rem;
    }

    .mrr-amount {
        font-size: 2rem;
    }

    .mrr-subs-row {
        gap: 1rem;
    }

    .mrr-subs-number {
        font-size: 1.25rem;
    }

    .minimal-channel-number {
        font-size: 1.25rem;
    }

    .insight-bubble {
        padding: 0.875rem;
    }

    .event-text {
        font-size: 0.9375rem;
    }

    .event-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* Chat section mobile */
    .chat-feature-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .chat-benefits {
        order: 2;
    }

    .chat-demo {
        order: 1;
    }

    .chat-window {
        max-width: 100%;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    /* Notifications section mobile */
    .notifications-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .notification-preview-card {
        max-width: 100%;
    }
}

/* ===== BROWSER MOCKUP ===== */
.browser-mockup {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    margin: 0 auto;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.95);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots .dot.red {
    background: #ff5f57;
}

.browser-dots .dot.yellow {
    background: #febc2e;
}

.browser-dots .dot.green {
    background: #28c840;
}

.browser-url {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.url-icon {
    font-size: 0.75rem;
    opacity: 0.6;
}

.url-text {
    font-size: 0.8125rem;
    color: var(--slate-400);
    font-weight: 500;
}

.browser-spacer {
    width: 60px;
}

.browser-content {
    min-height: 500px;
}

/* ===== MOCKUP DASHBOARD (Exact Replica) ===== */
.mockup-dashboard {
    padding: 1rem 1.5rem;
}

/* Default cursor for all mockup elements except tabs */
.mockup-dashboard * {
    cursor: default;
}

.mockup-dashboard .mockup-tab {
    cursor: pointer;
}

/* Mockup Header */
.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    position: relative;
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.mockup-logo img {
    width: 24px;
    height: 24px;
    margin-bottom: 5px;
}

.mockup-logo-text {
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mockup-project-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 0.5rem;
    cursor: default;
}

.mockup-project-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.mockup-project-switcher svg {
    color: var(--slate-400);
}

.mockup-account-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: default;
}

.mockup-account-btn svg {
    color: var(--slate-300);
}

/* Mockup Quick Access */
.mockup-quick-access {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.mockup-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

.mockup-quick-connect {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.mockup-quick-chat {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.mockup-quick-icon {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.mockup-quick-text {
    display: flex;
    flex-direction: column;
}

.mockup-quick-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.mockup-quick-subtitle {
    font-size: 0.65rem;
    color: var(--slate-400);
}

/* Mockup Tabs */
.mockup-tabs {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    padding: 0.375rem;
    margin-bottom: 1rem;
}

.mockup-tab {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-400);
    background: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

/* Pulsing dot indicator for inactive tabs */
.mockup-tab:not(.active)::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.mockup-tab:hover {
    color: var(--white);
    background: rgba(59, 130, 246, 0.15);
}

.mockup-tab.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-light);
}

/* Mockup Signals Content */
.mockup-signals-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

/* Mockup Signal Card - matching real dashboard */
.mockup-signal-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.mockup-signal-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-signal-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.mockup-signal-title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.mockup-signal-title-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.mockup-signal-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}

.mockup-signal-info {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    cursor: default;
}

.mockup-signal-info svg {
    color: var(--slate-500);
    width: 12px;
    height: 12px;
}

.mockup-info-tooltip {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 0.375rem;
    font-size: 0.65rem;
    color: var(--slate-300);
    white-space: nowrap;
}

.mockup-signal-info:hover .mockup-info-tooltip {
    display: block;
}

.mockup-signal-date {
    font-size: 0.7rem;
    color: var(--slate-500);
}

.mockup-view-all {
    font-size: 0.7rem;
    color: var(--primary-light);
    text-decoration: none;
    cursor: default;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.7;
}

/* Mockup Insights */
.mockup-insights-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-insight {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3b82f6;
    border-radius: 0.5rem;
}

.mockup-insight.positive {
    border-left-color: #10b981;
}

.mockup-insight.neutral {
    border-left-color: #3b82f6;
}

.mockup-insight-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mockup-insight-sources {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mockup-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.mockup-source-badge img {
    width: 12px;
    height: 12px;
}

.mockup-source-badge span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--slate-500);
}

.mockup-insight-text {
    font-size: 0.8rem;
    color: var(--slate-300);
    line-height: 1.5;
}

.mockup-insight-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.mockup-insight-text em {
    color: #93c5fd;
    font-style: normal;
}

/* Mockup Resources */
.mockup-resources-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-resource-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
}

.mockup-resource-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.mockup-resource-text {
    font-size: 0.8rem;
    color: var(--slate-300);
    line-height: 1.4;
}

.mockup-resource-source {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.mockup-resource-source img {
    width: 12px;
    height: 12px;
}

.mockup-resource-source span {
    font-size: 0.7rem;
    color: #60a5fa;
    font-weight: 500;
}

.mockup-resource-arrow {
    flex-shrink: 0;
    color: var(--slate-500);
}

.mockup-resource-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateX(4px);
}

.mockup-resource-card:hover .mockup-resource-arrow {
    color: #60a5fa;
}

/* Make resource card children clickable */
.mockup-resource-card,
.mockup-resource-card * {
    pointer-events: auto;
    cursor: pointer;
}

/* Tab Content Visibility */
.mockup-tab-content {
    display: none;
}

.mockup-tab-content.active {
    display: block;
}

/* ===== REVENUE TAB - Matching Real Dashboard ===== */
.mockup-revenue-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mockup-revenue-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s;
}

.mockup-revenue-card:hover {
    border-color: rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.mockup-revenue-card.mockup-revenue-main {
    border-color: rgba(148, 163, 184, 0.25);
}

.mockup-revenue-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mockup-revenue-icon {
    font-size: 18px;
    line-height: 1;
}

.mockup-revenue-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.mockup-revenue-body {
    display: flex;
    flex-direction: column;
}

.mockup-mrr-hero {
    font-size: clamp(32px, 10vw, 48px);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mockup-revenue-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mockup-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.mockup-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.mockup-stat-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Old traffic styles removed - using new styles in TRAFFIC TOTAL BANNER section */

.mockup-traffic-content-old {
    display: none;
}

.mockup-traffic-label {
    font-size: 0.75rem;
    color: var(--slate-400);
}

.mockup-traffic-stats {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.mockup-traffic-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
}

.mockup-traffic-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.mockup-traffic-trend.positive {
    color: #10b981;
}

.mockup-vs-avg {
    font-size: 0.65rem;
    color: var(--slate-500);
    font-weight: 400;
}

.mockup-traffic-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mockup-traffic-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-traffic-row:last-child {
    border-bottom: none;
}

.mockup-traffic-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mockup-traffic-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.mockup-traffic-emoji {
    font-size: 0.875rem;
}

.mockup-traffic-name {
    font-size: 0.8rem;
    color: var(--slate-300);
}

.mockup-traffic-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
}

.mockup-traffic-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.mockup-traffic-trend-row {
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mockup-trend {
    font-weight: 600;
}

.mockup-trend.positive {
    color: #10b981;
}

.mockup-trend.neutral {
    color: var(--slate-500);
}

.mockup-trend.negative {
    color: #ef4444;
}

/* ===== SEO TAB ===== */
.mockup-seo-share-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.mockup-seo-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--slate-400);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.mockup-seo-share-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.mockup-seo-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.mockup-seo-label {
    font-size: 0.8rem;
    color: var(--slate-400);
}

.mockup-timeframe {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-400);
    margin-left: auto;
}

.mockup-seo-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-seo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0.375rem;
}

.mockup-seo-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}

.mockup-seo-emoji {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mockup-seo-path,
.mockup-seo-keyword {
    font-size: 0.8rem;
    color: var(--slate-300);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-seo-values {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.mockup-seo-clicks {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.mockup-seo-pos {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.mockup-seo-pos.good {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
}

.mockup-seo-pos.opportunity {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.15);
}

/* ===== CUSTOMER LIST (Revenue Tab) - Matching Real Dashboard ===== */
.mockup-customer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-customer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 0.75rem;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.mockup-customer-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(148, 163, 184, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.mockup-customer-info {
    flex: 1;
    min-width: 0;
}

.mockup-customer-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.mockup-customer-email {
    font-size: 0.875rem;
    color: var(--slate-200);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mockup-plan-badge {
    display: inline-flex;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    flex-shrink: 0;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-light);
}

.mockup-badge-trial {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.mockup-customer-meta {
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.mockup-customer-date {
    font-size: 0.8125rem;
    color: var(--slate-500);
    flex-shrink: 0;
}

/* Top Customers with rank badge and amount */
.mockup-top-customer-rank-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.mockup-customer-item:first-child .mockup-top-customer-rank-badge {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(234, 179, 8, 0.1));
    color: #fbbf24;
}

.mockup-top-customer-amount {
    font-size: 15px;
    font-weight: 600;
    color: #22c55e;
    flex-shrink: 0;
    margin-left: auto;
}

/* ===== REALTIME BLOCK (Traffic Tab) - Matching Real Dashboard ===== */
.mockup-realtime-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.mockup-realtime-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-realtime-count {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--success) 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.mockup-realtime-label {
    display: flex;
    flex-direction: column;
}

.mockup-realtime-title {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.mockup-realtime-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.mockup-realtime-pulse {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: mockup-pulse 2s infinite;
    margin-left: auto;
}

@keyframes mockup-pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

/* ===== TRAFFIC TOTAL BANNER - Matching Real Dashboard ===== */
.mockup-traffic-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mockup-traffic-content {
    text-align: center;
}

.mockup-traffic-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.mockup-traffic-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mockup-traffic-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.mockup-traffic-trend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    font-size: 1rem;
    font-weight: 700;
}

.mockup-traffic-trend.positive {
    color: #10b981;
}

.mockup-vs-avg {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== TOP TRAFFIC SOURCES LIST - Matching Real Dashboard ===== */
.mockup-top-sources-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mockup-top-source-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0.875rem 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-top-source-item:last-child {
    border-bottom: none;
}

.mockup-top-traffic-rank-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.mockup-top-source-item:first-child .mockup-top-traffic-rank-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    color: #60a5fa;
}

.mockup-source-info {
    flex: 1;
    min-width: 0;
}

.mockup-source-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-source-visitors {
    font-size: 15px;
    font-weight: 600;
    color: #60a5fa;
    flex-shrink: 0;
}

/* ===== PAGESPEED BLOCK (SEO Tab) ===== */
.mockup-signal-icon-img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.mockup-pagespeed-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-device-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 0.75rem;
    padding: 1rem;
}

.mockup-device-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.mockup-device-icon {
    font-size: 1rem;
}

.mockup-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.mockup-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mockup-metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.mockup-metric-value.mockup-score-good {
    color: #10b981;
}

.mockup-metric-value.mockup-score-average {
    color: #f59e0b;
}

.mockup-metric-value.mockup-score-poor {
    color: #ef4444;
}

.mockup-metric-label {
    font-size: 0.6rem;
    color: var(--slate-500);
    text-align: center;
}

.mockup-issues-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
}

.mockup-issues-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.mockup-issues-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-issues-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-issue-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 0.5rem;
}

.mockup-issue-emoji {
    font-size: 0.875rem;
    flex-shrink: 0;
}

.mockup-issue-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.mockup-issue-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-300);
}

.mockup-issue-desc {
    font-size: 0.75rem;
    color: var(--slate-500);
}

@media (max-width: 768px) {
    .browser-mockup {
        border-radius: 8px;
    }

    .browser-header {
        padding: 0.5rem 0.75rem;
    }

    .browser-dots .dot {
        width: 10px;
        height: 10px;
    }

    .browser-url {
        max-width: 260px;
        padding: 0.375rem 0.75rem;
    }

    .url-text {
        font-size: 0.7rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .browser-spacer {
        width: 48px;
    }

    .browser-content {
        min-height: auto;
    }

    .mockup-dashboard {
        padding: 0.75rem;
    }

    .mockup-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .mockup-project-switcher {
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .mockup-quick-access {
        display: none;
    }

    .mockup-account-btn span {
        display: none;
    }

    .mockup-tab {
        padding: 0.375rem 0.5rem;
        font-size: 0.65rem;
    }

    .mockup-tab:not(.active)::after {
        width: 5px;
        height: 5px;
        top: 3px;
        right: 3px;
    }

    .mockup-signal-card {
        padding: 0.75rem;
    }

    .mockup-insight {
        padding: 0.5rem;
    }

    .mockup-insight-text {
        font-size: 0.75rem;
    }

    .mockup-resource-card {
        padding: 0.5rem;
    }

    .mockup-resource-text {
        font-size: 0.75rem;
    }

    /* Mobile responsive for new blocks */
    .mockup-devices-grid {
        grid-template-columns: 1fr;
    }

    .mockup-metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .mockup-realtime-number {
        font-size: 1.5rem;
    }

    .mockup-customer-date {
        display: none;
    }

    .mockup-customer-email {
        font-size: 0.75rem;
    }

    .mockup-customer-list {
        gap: 0.5rem;
    }

    .mockup-customer-item {
        padding: 0.625rem 0.75rem;
        gap: 0.625rem;
    }

    .mockup-top-source-item {
        padding: 0.5rem 0;
    }

    .mockup-top-customer-rank-badge {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .mockup-top-customer-amount {
        font-size: 13px;
    }

    .mockup-customer-meta {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .btn-hero {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== PEACE OF MIND LANDING PAGE STYLES ===== */

/* Hero - Split Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

.hero-confession {
    background: #fee2e2;
    border: 2px dashed #fca5a5;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-confession-text {
    font-size: 13px;
    color: #dc2626;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.confession-action {
    font-style: italic;
    opacity: 0.9;
}

.confession-time {
    background: #fecaca;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-style: normal;
    font-size: 11px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hero-confession-text {
        flex-wrap: wrap;
        white-space: normal;
        justify-content: center;
    }
}

.headline-strike {
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 400;
}

.hero-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .hero-proof {
        justify-content: center;
    }
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.hero-proof-item img {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

/* Hero Browser Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: visible;
    padding-top: 20px;
}

.browser-chaos {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.browser-frame {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.browser-header {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #ff5f56; }
.browser-dot.yellow { background: #ffbd2e; }
.browser-dot.green { background: #27ca40; }

.browser-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
    overflow: hidden;
}

.browser-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px 6px 0 0;
    font-size: 11px;
    color: #6b7280;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.browser-tab img {
    width: 14px;
    height: 14px;
}

.browser-tab .tab-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid #d1d5db;
    border-top-color: #6b7280;
    border-radius: 50%;
    opacity: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tab switching animation */
.browser-tab.tab-stripe { animation: tabStripeActive 12s ease-in-out infinite; }
.browser-tab.tab-ga { animation: tabGaActive 12s ease-in-out infinite; }
.browser-tab.tab-gsc { animation: tabGscActive 12s ease-in-out infinite; }
.browser-tab.tab-stripe .tab-spinner { animation: spin 0.8s linear infinite, spinnerStripe 12s ease-in-out infinite; }
.browser-tab.tab-ga .tab-spinner { animation: spin 0.8s linear infinite, spinnerGa 12s ease-in-out infinite; }
.browser-tab.tab-gsc .tab-spinner { animation: spin 0.8s linear infinite, spinnerGsc 12s ease-in-out infinite; }

@keyframes tabStripeActive {
    0%, 28% { background: white; color: #111; }
    33%, 95% { background: #e5e7eb; color: #6b7280; }
    100% { background: white; color: #111; }
}

@keyframes tabGaActive {
    0%, 28% { background: #e5e7eb; color: #6b7280; }
    33%, 61% { background: white; color: #111; }
    66%, 100% { background: #e5e7eb; color: #6b7280; }
}

@keyframes tabGscActive {
    0%, 61% { background: #e5e7eb; color: #6b7280; }
    66%, 95% { background: white; color: #111; }
    100% { background: #e5e7eb; color: #6b7280; }
}

@keyframes spinnerStripe {
    0%, 5% { opacity: 1; }
    10%, 95% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes spinnerGa {
    0%, 28% { opacity: 0; }
    33%, 38% { opacity: 1; }
    43%, 100% { opacity: 0; }
}

@keyframes spinnerGsc {
    0%, 61% { opacity: 0; }
    66%, 71% { opacity: 1; }
    76%, 100% { opacity: 0; }
}

/* Dashboard content switching */
.dashboard-content {
    position: relative;
    min-height: 240px;
}
.dashboard-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}
.dashboard-panel.panel-stripe { animation: panelStripe 12s ease-in-out infinite; }
.dashboard-panel.panel-ga { animation: panelGa 12s ease-in-out infinite; }
.dashboard-panel.panel-gsc { animation: panelGsc 12s ease-in-out infinite; }

@keyframes panelStripe {
    0%, 28% { opacity: 1; visibility: visible; z-index: 3; }
    33%, 95% { opacity: 0; visibility: hidden; z-index: 1; }
    100% { opacity: 1; visibility: visible; z-index: 3; }
}

@keyframes panelGa {
    0%, 28% { opacity: 0; visibility: hidden; z-index: 1; }
    33%, 61% { opacity: 1; visibility: visible; z-index: 3; }
    66%, 100% { opacity: 0; visibility: hidden; z-index: 1; }
}

@keyframes panelGsc {
    0%, 61% { opacity: 0; visibility: hidden; z-index: 1; }
    66%, 95% { opacity: 1; visibility: visible; z-index: 3; }
    100% { opacity: 0; visibility: hidden; z-index: 1; }
}

.browser-content {
    padding: 20px;
    background: #fafafa;
    min-height: 280px;
}

/* Refresh Counter */
.refresh-counter {
    position: absolute;
    top: -16px;
    right: -15px;
    background: #dc2626;
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    z-index: 10;
}

.refresh-counter .count {
    font-size: 24px;
    font-weight: 800;
    display: block;
}

/* Dashboard mockup */
.dashboard-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-metric-row {
    display: flex;
    gap: 12px;
}

.mock-metric {
    flex: 1;
    background: white;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.mock-metric-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.mock-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.mock-metric-trend {
    font-size: 12px;
    font-weight: 600;
}

.mock-metric-trend.positive {
    color: #22c55e;
}

.mock-metric-trend.negative {
    color: #ef4444;
}

.mock-metric-value.loading {
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    color: transparent;
}

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

.mock-chart {
    background: white;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.mock-bar {
    flex: 1;
    background: #667eea;
    border-radius: 2px 2px 0 0;
    opacity: 0.6;
}

.mock-bar:nth-child(1) { height: 60%; }
.mock-bar:nth-child(2) { height: 45%; }
.mock-bar:nth-child(3) { height: 80%; }
.mock-bar:nth-child(4) { height: 55%; }
.mock-bar:nth-child(5) { height: 70%; }
.mock-bar:nth-child(6) { height: 40%; }
.mock-bar:nth-child(7) { height: 65%; animation: barPulse 2s ease-in-out infinite; }

@keyframes barPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Mock list styles for dashboard panels */
.mock-metric-single {
    background: white;
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 8px;
    text-align: center;
}

.mock-list-header {
    font-size: 9px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    font-weight: 600;
}

.mock-list {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.mock-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 10px;
}

.mock-list-item:last-child {
    border-bottom: none;
}

.mock-email, .mock-source, .mock-query, .mock-page {
    color: #374151;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.mock-plan {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.mock-plan.stripe {
    background: #ede9fe;
    color: #635bff;
}

.mock-count, .mock-stats {
    font-weight: 600;
    font-size: 10px;
}

.mock-count.ga {
    color: #f9ab00;
}

.mock-stats.gsc {
    color: #4285f4;
    font-size: 9px;
}

/* Mini Charts */
.mock-mini-chart {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 8px;
    margin-bottom: 8px;
    height: 50px;
}

.mock-mini-chart svg {
    width: 100%;
    height: 100%;
}

/* Floating anxiety thoughts */
.floating-thought {
    position: absolute;
    background: #fee2e2;
    border: 1px solid #fecaca;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #dc2626;
    white-space: nowrap;
    animation: floatAround 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(220,38,38,0.15);
    z-index: 5;
}

.floating-thought:nth-child(1) { top: 50px; left: -60px; bottom: auto; right: auto; animation-delay: 0s; }
.floating-thought:nth-child(2) { bottom: 60px; left: -40px; top: auto; right: auto; animation-delay: 1s; }
.floating-thought:nth-child(3) { top: 180px; right: 30px; bottom: auto; left: auto; animation-delay: 0.5s; }
.floating-thought:nth-child(4) { bottom: -25px; right: auto; left: 50%; top: auto; animation-delay: 1.5s; }

/* Adjust bubbles on smaller screens */
@media (max-width: 900px) {
    .floating-thought {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Reposition floating thoughts on mobile to prevent overflow */
@media (max-width: 768px) {
    .hero-visual {
        overflow: hidden;
        padding-top: 0;
    }

    .browser-chaos {
        transform: none;
        max-width: 320px;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .browser-frame {
        max-width: 100%;
        position: relative;
    }

    /* Show floating thoughts as a stacked list below browser */
    .floating-thought {
        position: static !important;
        display: block;
        margin: 4px auto;
        max-width: 260px;
        text-align: center;
        white-space: normal;
        animation: none !important;
        transform: none !important;
        order: 3;
    }

    /* First bubble overlaps browser */
    .floating-thought:first-of-type {
        margin-top: -40px;
    }

    .refresh-counter {
        position: static;
        display: inline-block;
        margin: 0 auto 12px;
        order: 1;
    }

    .browser-frame {
        order: 2;
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .browser-chaos {
        max-width: 280px;
    }

    .floating-thought {
        font-size: 11px;
        max-width: 220px;
    }
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

/* Refresh animation overlay */
.refresh-overlay {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: flashRefresh 3s ease-in-out infinite;
}

.refresh-overlay .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes flashRefresh {
    0%, 100% { opacity: 0; }
    15%, 25% { opacity: 1; }
    40% { opacity: 0; }
}

/* Intervention Section */
.intervention-section {
    padding: 70px 0;
    background: #111;
    color: white;
    text-align: center;
}

.intervention-intro {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.intervention-question {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .intervention-question {
        margin-bottom: 0;
    }
}

.confession-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.confession-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
    padding-top: 70px;
    position: relative;
    margin-top: 30px;
}

.confession-icon {
    position: absolute;
    top: -30px;
    left: 24px;
    font-size: 52px;
}

.confession-text {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.6;
}

.confession-author {
    margin-top: 16px;
    font-size: 13px;
    color: #6b7280;
}

.confession-highlight {
    color: #fbbf24;
}

/* Anxiety Mind Section */
.anxiety-mind-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fef2f2 0%, #fff 100%);
    overflow: hidden;
}

.mind-container {
    max-width: 900px;
    margin: 0 auto;
}

.mind-header {
    text-align: center;
    margin-bottom: 60px;
}

.mind-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.mind-subtitle {
    font-size: 18px;
    color: #6b7280;
}

.thought-cloud {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.1);
    border: 2px solid #fecaca;
}

.thought-cloud::before {
    content: '🧠';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 42px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fca5a5;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.thoughts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.thought-bubble {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: #991b1b;
    animation: float 3s ease-in-out infinite;
}

.thought-bubble:nth-child(2) { animation-delay: 0.5s; }
.thought-bubble:nth-child(3) { animation-delay: 1s; }
.thought-bubble:nth-child(4) { animation-delay: 1.5s; }
.thought-bubble:nth-child(5) { animation-delay: 2s; }
.thought-bubble:nth-child(6) { animation-delay: 0.3s; }
.thought-bubble:nth-child(7) { animation-delay: 0.8s; }
.thought-bubble:nth-child(8) { animation-delay: 1.3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.thought-bubble.urgent {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
    font-weight: 600;
}

.mind-caption {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: #6b7280;
    font-style: italic;
}

.mind-caption strong {
    color: #dc2626;
}

/* Calculator Section */
.calculator-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.calculator-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.calculator-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #dc2626;
    margin-bottom: 16px;
}

.calculator-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    margin-bottom: 48px;
}

.calculator-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f3f4f6;
}

.calc-row:last-child {
    border-bottom: none;
}

.calc-label {
    font-size: 16px;
    color: #374151;
    text-align: left;
}

.calc-value {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.calc-row.total {
    background: #fef2f2;
    margin: 24px -48px -48px;
    padding: 32px 48px;
    border-radius: 0 0 22px 22px;
    border-bottom: none;
}

.calc-row.total .calc-label {
    font-weight: 700;
    color: #111;
}

.calc-row.total .calc-value {
    font-size: 36px;
    color: #dc2626;
}

.calculator-note {
    margin-top: 32px;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px 28px;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.calculator-note strong {
    color: #dc2626;
}

/* Never Off Section */
.never-off-section {
    padding: 70px 0;
    background: #111;
    color: white;
}

.never-off-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .never-off-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.never-off-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.never-off-content p {
    font-size: 17px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 16px;
}

.never-off-content p strong {
    color: #fbbf24;
}

.context-switch-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px;
}

.switch-header {
    text-align: center;
    margin-bottom: 24px;
}

.switch-header span {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.switch-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.switch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    font-size: 14px;
    color: #e5e7eb;
}

.switch-item.active {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
}

.switch-item .time {
    color: #6b7280;
    font-size: 12px;
    min-width: 50px;
}

.switch-item .icon {
    font-size: 16px;
}

.switch-item.active .icon {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.switch-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.switch-footer span {
    font-size: 13px;
    color: #ef4444;
}

/* Solution Section */
.solution-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.solution-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.solution-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-subheadline {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Flow Visualization */
.flow-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin: 60px 0 20px;
}

@media (max-width: 900px) {
    .flow-visual {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

.flow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.flow-label-note {
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 2px;
}

.flow-sources {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 900px) {
    .flow-sources {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.flow-source {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease;
    min-width: 160px;
}

.flow-source:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .flow-source {
        min-width: auto;
        padding: 10px 16px;
    }
    .flow-source:hover {
        transform: translateY(-2px);
    }
}

.flow-source img {
    width: 24px;
    height: 24px;
}

.flow-source span {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.flow-arrow {
    font-size: 32px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .flow-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }
}

.flow-center {
    background: white;
    color: #111;
    padding: 28px 36px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    flex-shrink: 0;
}

.flow-center-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.flow-center-text {
    font-size: 20px;
    font-weight: 700;
}

.flow-center-sub {
    font-size: 13px;
    color: #6b7280;
}

.flow-output {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 900px) {
    .flow-output {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.flow-output-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

.flow-output-item span {
    font-size: 20px;
}

.flow-output-item strong {
    font-size: 14px;
}

/* Not Just Numbers Section */
.not-just-numbers-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.njn-header {
    text-align: center;
    margin-bottom: 60px;
}

.njn-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.njn-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.njn-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.njn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .njn-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.njn-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.njn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.njn-card.numbers::before { background: #667eea; }
.njn-card.ideas::before { background: #16a34a; }
.njn-card.resources::before { background: #f59e0b; }

/* Card background colors */
.njn-card.numbers { background: linear-gradient(180deg, #f0f0ff 0%, #fff 100%); }
.njn-card.ideas { background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.njn-card.resources { background: linear-gradient(180deg, #fffbeb 0%, #fff 100%); }

.njn-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.njn-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.njn-card-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.njn-example {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    color: #374151;
    border-left: 3px solid;
}

.njn-card.numbers .njn-example { border-left-color: #667eea; background: #eef2ff; }
.njn-card.ideas .njn-example { border-left-color: #16a34a; background: #dcfce7; }
.njn-card.resources .njn-example { border-left-color: #f59e0b; background: #fef3c7; }

.njn-example-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.njn-example strong {
    color: #111;
}

/* ===== PERSONALIZED LINKS SECTION ===== */
.personalized-links-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.pl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pl-content {
    padding: 0 16px;
}

.pl-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.pl-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pl-description {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.pl-description strong {
    color: #e2e8f0;
}

.pl-sources {
    margin-top: 28px;
}

.pl-sources-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}

.pl-sources-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.pl-sources-logos img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.pl-sources-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.pl-example-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.pl-example-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pl-example-icon {
    font-size: 20px;
}

.pl-example-title {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.pl-example-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 3px solid #a78bfa;
}

.pl-example-item:last-child {
    margin-bottom: 0;
}

.pl-example-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 10px;
}

.pl-example-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pl-example-source img {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

.pl-example-source span {
    font-size: 12px;
    color: #64748b;
}

@media (max-width: 900px) {
    .pl-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .personalized-links-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .personalized-links-section {
        padding: 48px 0;
    }

    .pl-sources-logos img {
        width: 20px;
        height: 20px;
    }
}

/* Email Preview Section - PAGE level (not email content) */
.email-preview-section {
    padding: 70px 0;
}

.email-preview-header {
    text-align: center;
    margin-bottom: 48px;
}

.email-preview-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.email-preview-subtitle {
    font-size: 18px;
    color: #6b7280;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: #111;
    color: white;
    text-align: center;
}

.cta-emoji {
    font-size: 64px;
    margin-bottom: 24px;
}

.cta-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.cta-subheadline {
    font-size: 20px;
    color: #9ca3af;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 48px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: #6b7280;
}

.cta-services {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.cta-service {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
}

.cta-service img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

/* ===== MOBILE SPACING & ALIGNMENT FIXES ===== */
@media (max-width: 768px) {
    /* Consistent horizontal padding for all containers */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Reduce section vertical padding */
    .hero-section {
        padding-top: calc(4rem + 80px);
        padding-bottom: 30px;
    }

    .intervention-section,
    .anxiety-mind-section,
    .calculator-section,
    .never-off-section,
    .solution-section,
    .not-just-numbers-section,
    .email-section,
    .final-cta {
        padding: 40px 0;
    }

    /* Reduce header margins */
    .mind-header {
        margin-bottom: 30px;
    }

    .njn-header {
        margin-bottom: 30px;
    }

    .calculator-headline {
        margin-bottom: 30px;
    }

    /* Grid adjustments */
    .never-off-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .njn-grid {
        gap: 20px;
    }

    /* Confession cards */
    .confession-cards {
        gap: 24px;
    }

    .confession-card {
        padding: 20px;
        padding-top: 60px;
        margin-top: 30px;
    }

    .confession-icon {
        top: -44px;
        font-size: 44px;
    }

    /* Calculator box */
    .calculator-box {
        padding: 20px;
    }

    .calc-row.total {
        margin: 20px -20px -20px;
        padding: 24px 20px;
        border-radius: 0 0 20px 20px;
    }

    /* Flow visual */
    .flow-visual {
        gap: 16px;
        margin: 30px 0 20px;
    }

    .solution-subheadline {
        margin-bottom: 24px;
    }

    .flow-arrow {
        margin: 0;
        font-size: 24px;
    }

    /* Mind section - more space before brain emoji */
    .mind-header {
        margin-bottom: 50px;
    }

    /* Never-off section alignment */
    .never-off-content {
        padding: 0 16px;
    }

    .context-switch-visual {
        padding: 20px;
    }

    /* Email mock content padding - only for content sections, not banner */
    .email-section {
        padding: 10px 16px;
    }

    .email-metrics-grid {
        padding: 8px 16px;
    }

    .email-traffic-list,
    .email-reading-item {
        padding: 0 16px;
    }

    .email-cta-btn,
    .email-footer-link {
        margin-left: 16px;
        margin-right: 16px;
    }

    /* Reduce bottom padding for solution section */
    .solution-section {
        padding-bottom: 30px;
    }

    .flow-output,
    .flow-sources,
    .flow-center {
        margin-bottom: 0;
    }

    /* CTA section */
    .final-cta .cta-headline {
        font-size: 28px;
    }

    .final-cta .cta-subheadline {
        font-size: 16px;
    }

    /* Ensure text doesn't touch edges */
    .hero-content,
    .intervention-section .container,
    .calculator-container,
    .mind-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .intervention-section,
    .anxiety-mind-section,
    .calculator-section,
    .never-off-section,
    .solution-section,
    .not-just-numbers-section,
    .email-section,
    .final-cta {
        padding: 32px 0;
    }

    .confession-card {
        padding: 16px;
    }
}

/* ===== PRODUCT HUNT HERO SECTION (TEMPORARY) ===== */
.ph-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero feed visual */
.ph-hero-visual {
    flex: 1;
    max-width: 480px;
    flex-shrink: 0;
}

.ph-hero-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ph-feed-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    position: relative;
    transition: border-color 0.3s;
}

.ph-feed-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.ph-feed-sources {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.625rem;
}

.ph-feed-sources img {
    width: 20px;
    height: 20px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.ph-feed-text {
    font-size: 0.875rem;
    color: var(--slate-300);
    line-height: 1.55;
}

.ph-feed-text strong {
    color: #fff;
    font-weight: 600;
}

.ph-feed-time {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    color: var(--slate-600);
}

.ph-hero-text {
    flex: 1;
}

.ph-hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.ph-hero-headline .ph-highlight {
    color: #60a5fa;
    font-weight: 800;
}

.ph-hero-desc strong {
    color: #fff;
    font-weight: 600;
}

.ph-hero-subheadline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ph-hero-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.6;
    max-width: 480px;
    margin-top: 1.25rem;
}

.ph-hero-cta {
    margin-top: 2rem;
    display: inline-block;
}

.ph-hero-no-cc {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    color: var(--slate-500);
    text-align: center;
}

.ph-hero-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.ph-hero-badges a {
    display: inline-flex;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.ph-hero-badges a:hover {
    opacity: 1;
}

.ph-hero-visual {
    flex-shrink: 0;
}

.ph-hero-visual .ph-iphone {
    transform: scale(1);
}

.ph-transform {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.ph-transform-icons {
    display: flex;
    gap: 1.25rem;
}

.ph-transform-icons img {
    width: 80px;
    height: 80px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.ph-transform-arrow {
    font-size: 4rem;
    color: var(--slate-400);
}

.ph-transform-email {
    font-size: 5rem;
}

/* ===== PRODUCT HUNT INTEGRATIONS SECTION (TEMPORARY) ===== */
.ph-section-divider {
    position: relative;
}

.ph-section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.3) 50%, transparent 100%);
}

.ph-section-divider::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    max-width: 400px;
    height: 16px;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
}

.ph-integrations-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-integrations-layout {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ph-integrations-left {
    flex: 1;
    text-align: center;
}


.ph-integrations-right {
    flex: 1;
    text-align: center;
}

.ph-integrations-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.ph-integrations-subtitle {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.ph-integrations-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 320px;
    margin: 50px auto 0;
}

.ph-integration-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.2s;
}

.ph-integration-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 41, 59, 1);
}

/* Stripe card styling */
.ph-integration-card.stripe {
    border-color: rgba(99, 91, 255, 0.4);
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
}

/* Google Analytics card styling */
.ph-integration-card.ga {
    border-color: rgba(249, 171, 0, 0.4);
    background: linear-gradient(135deg, rgba(249, 171, 0, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
}

/* Google Search Console card styling */
.ph-integration-card.gsc {
    border-color: rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
}

/* PostHog card styling */
.ph-integration-card.posthog {
    border-color: rgba(240, 124, 62, 0.4);
    background: linear-gradient(135deg, rgba(240, 124, 62, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
}

/* Reddit card styling */
.ph-integration-card.reddit {
    border-color: rgba(255, 69, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.ph-integration-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    flex-shrink: 0;
}

.ph-integration-icon img {
    width: 22px;
    height: 22px;
}

.ph-integration-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.ph-integration-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.ph-integration-desc {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.ph-integration-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 16px;
    flex-shrink: 0;
}

.ph-integration-status.connected {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.ph-integration-status.connected svg {
    stroke: #34d399;
    width: 14px;
    height: 14px;
}

.ph-integrations-result {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ph-result-arrow {
    font-size: 1.25rem;
    color: var(--slate-500);
    animation: bounce 2s infinite;
}

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

.ph-result-text {
    font-size: 1rem;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 10px;
    font-weight: 500;
}

.ph-result-text strong {
    color: #60a5fa;
    font-weight: 700;
    font-size: 1.0625rem;
}

@media (max-width: 768px) {
    .ph-integrations-layout {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .ph-integrations-title {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .ph-integrations-title {
        font-size: 1.75rem;
    }

    .ph-integration-card {
        flex-wrap: wrap;
    }

    .ph-integration-status {
        width: auto;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .ph-hero-section {
        padding: 130px 0 40px;
        min-height: auto;
    }

    .ph-hero-layout {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .ph-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .ph-hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ph-hero-badges {
        justify-content: center;
    }

    .ph-hero-visual {
        display: none;
    }

    .ph-hero-headline {
        font-size: 2.25rem;
    }

    .ph-hero-subheadline {
        font-size: 2.5rem;
    }

    .ph-email-section,
    .ph-curated-section,
    .ph-chat-section {
        padding: 60px 0;
    }

    .ph-email-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .ph-email-subtitle {
        font-size: 2rem;
        text-align: center;
    }

    .ph-email-desc {
        text-align: center;
        max-width: 100%;
    }

    .ph-curated-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .ph-curated-title {
        font-size: 2rem;
        text-align: center;
    }

    .ph-curated-desc {
        text-align: center;
        max-width: 100%;
    }

    .ph-chat-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .ph-chat-title {
        font-size: 2rem;
        text-align: center;
    }

    .ph-chat-desc {
        text-align: center;
        max-width: 100%;
    }

    .ph-chat-window {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ph-hero-section {
        padding: 120px 0 30px;
    }

    .ph-hero-headline {
        font-size: 1.75rem;
    }

    .ph-hero-subheadline {
        font-size: 2rem;
    }

    .ph-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .ph-email-section,
    .ph-curated-section,
    .ph-chat-section {
        padding: 40px 0;
        min-height: auto;
    }

    .ph-integrations-section {
        padding: 40px 0;
        min-height: auto;
    }

    .ph-integrations-title {
        font-size: 1.5rem;
    }
}

/* ===== PRODUCT HUNT EMAIL PREVIEW SECTION (TEMPORARY) ===== */
.ph-email-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.ph-email-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-email-text {
    flex: 1;
}

.ph-email-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    line-height: 1.2;
}

.ph-email-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin-top: 1.25rem;
    max-width: 360px;
}

.ph-iphone {
    transform: scale(1);
    height: auto;
}

.ph-phone-content {
    background: #ffffff;
    border-radius: 0 0 32px 32px;
    padding: 20px;
    flex: 1;
}

.ph-email-header {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 14px;
}

.ph-email-subject {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.ph-email-metrics {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.ph-metric {
    flex: 1;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.ph-metric-label {
    display: block;
    font-size: 0.6875rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.ph-metric-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.ph-email-insights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ph-email-insights-header {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 2px;
}

.ph-insight {
    background: #f9fafb;
    border-radius: 10px;
    padding: 12px;
    border-left: 4px solid #635bff;
}

.ph-insight-source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.ph-insight-source img {
    width: 18px;
    height: 18px;
}

.ph-insight-source span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.ph-insight-text {
    font-size: 0.8125rem;
    color: #374151;
    line-height: 1.4;
    margin: 0;
}

.ph-insight-text strong {
    color: #111827;
}

.ph-insight:nth-child(2) {
    border-left-color: #635bff;
}

.ph-insight:nth-child(3) {
    border-left-color: #f9ab00;
}

.ph-insight:nth-child(4) {
    border-left-color: #4285f4;
}

/* ===== AI INSIGHTS SECTION ===== */
.ph-insights-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-insights-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-insights-text {
    flex: 1;
}

.ph-insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.2;
}

.ph-insights-title .ph-highlight {
    color: #60a5fa;
    font-weight: 800;
}

.ph-insights-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin-top: 1.25rem;
    max-width: 360px;
}

.ph-insights-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 420px;
    flex-shrink: 0;
}

.ph-insights-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    border-left: 3px solid #635bff;
}

.ph-insights-card:nth-child(2) {
    border-left-color: #f9ab00;
}

.ph-insights-card:nth-child(3) {
    border-left-color: #4285f4;
}

.ph-insights-card-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ph-insights-card-source img {
    width: 18px;
    height: 18px;
}

.ph-insights-card-source span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
}

.ph-insights-card-text {
    font-size: 0.9375rem;
    color: var(--slate-300);
    line-height: 1.5;
    margin: 0;
}

.ph-insights-card-text strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .ph-insights-layout {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .ph-insights-title {
        font-size: 2rem;
        text-align: center;
    }

    .ph-insights-desc {
        text-align: center;
        max-width: 100%;
    }

    .ph-insights-cards {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .ph-insights-section {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ===== PRODUCT HUNT CURATED LINKS SECTION (TEMPORARY) ===== */
.ph-curated-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-curated-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-curated-text {
    flex: 1;
}

.ph-curated-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.2;
}

.ph-curated-title .ph-highlight {
    color: #60a5fa;
    font-weight: 800;
}

.ph-curated-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin-top: 1.25rem;
    max-width: 360px;
}

.ph-curated-desc strong {
    color: var(--white);
    font-weight: 600;
}

.ph-curated-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 550px;
}

.ph-curated-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.ph-curated-reason {
    font-size: 0.875rem;
    color: #f59e0b;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.ph-curated-reason::before {
    content: "→ ";
}

.ph-curated-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ph-curated-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.ph-curated-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ph-curated-source {
    font-size: 0.8125rem;
    color: var(--slate-400);
    font-weight: 500;
}

.ph-curated-link-title {
    font-size: 1.0625rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

/* ===== PRODUCT HUNT CHAT SECTION (TEMPORARY) ===== */
.ph-chat-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-chat-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-chat-content {
    flex: 1;
}

.ph-chat-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin-top: 1.25rem;
    max-width: 360px;
}

.ph-chat-desc strong {
    color: var(--white);
    font-weight: 600;
}

.ph-chat-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.2;
}

.ph-chat-title .ph-highlight {
    color: #60a5fa;
    font-weight: 800;
}

.ph-chat-window {
    width: 520px;
    max-width: 100%;
    background: #1e293b;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ph-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.ph-chat-question {
    align-self: flex-end;
    max-width: 85%;
}

.ph-chat-question span {
    display: inline-block;
    background: #3b82f6;
    color: white;
    padding: 12px 18px;
    border-radius: 18px 18px 4px 18px;
    font-size: 1rem;
    line-height: 1.4;
}

.ph-chat-answer {
    align-self: flex-start;
    max-width: 90%;
}

.ph-chat-answer span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--slate-200);
    padding: 14px 18px;
    border-radius: 18px 18px 18px 4px;
    font-size: 1rem;
    line-height: 1.5;
}

.ph-chat-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 20px;
}

.ph-chat-placeholder {
    color: var(--slate-500);
    font-size: 1rem;
}

/* ===== HOW IT WORKS / NOT ANOTHER AI WRAPPER ===== */
.ph-howitworks-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ph-howitworks-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.ph-howitworks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-300);
    line-height: 1.2;
}

.ph-howitworks-title .ph-highlight {
    color: #60a5fa;
    font-weight: 800;
}

.ph-howitworks-desc {
    font-size: 1.0625rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin-top: 1.25rem;
}

.ph-howitworks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.ph-howitworks-item {
    display: flex;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.ph-howitworks-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 30px rgba(var(--accent-rgb, 59, 130, 246), 0.08);
}

.ph-howitworks-accent {
    width: 4px;
    flex-shrink: 0;
    background: var(--accent, #3b82f6);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.ph-howitworks-item:hover .ph-howitworks-accent {
    opacity: 1;
}

.ph-howitworks-body {
    padding: 1.25rem 1.5rem;
}

.ph-howitworks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.ph-howitworks-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    background: color-mix(in srgb, var(--tag-color, #3b82f6) 12%, transparent);
    color: var(--tag-color, #3b82f6);
    border: 1px solid color-mix(in srgb, var(--tag-color, #3b82f6) 25%, transparent);
    white-space: nowrap;
}

.ph-howitworks-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 0.375rem;
}

.ph-howitworks-item-desc {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ph-howitworks-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ph-howitworks-section {
        min-height: auto;
        padding: 40px 0;
    }

    .ph-howitworks-grid {
        grid-template-columns: 1fr;
    }
}
