/* ========================================
   Home / Landing Page Styles
   Page-specific styles only
   (Common styles are in Public.css)
   ======================================== */

/* ============================================
   Landing Page Layout
   ============================================ */
.landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: radial-gradient(circle at 1px 1px, var(--dot-pattern-color) 1px, transparent 0);
    background-size: 32px 32px;
}

/* Dot pattern colors */
[data-theme="light"] .landing-page {
    --dot-pattern-color: rgba(0, 0, 0, 0.06);
    background-color: #fafbfc;
}

[data-theme="dark"] .landing-page {
    --dot-pattern-color: rgba(255, 255, 255, 0.04);
    background-color: var(--bg-primary);
}

.main-content {
    flex: 1;
    padding: 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--color-primary-muted) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--color-info-muted) 0%, transparent 40%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background-color: var(--color-success-muted);
    color: var(--color-success);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background-color: var(--bg-secondary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.feature-pill svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* Microsoft Sign-In Button */
.btn-microsoft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-microsoft:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-microsoft svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.microsoft-logo {
    flex-shrink: 0;
}

.sign-in-hint {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ============================================
   Hero Visual
   ============================================ */
.hero-visual {
    position: relative;
    height: 500px;
}

/* Third blob - specific to hero */
.hero-visual::before {
    content: "";
    position: absolute;
    top: 35%;
    right: 25%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, transparent 70%);
    filter: blur(35px);
    z-index: 0;
    animation: blobMove3 12s ease-in-out infinite;
}

[data-theme="dark"] .hero-visual::before {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
}

