/* ╔══════════════════════════════════════════════════════════════════════════╗
   ║   Eidolon Personal — landing-page overrides                              ║
   ║   products/personal/frontend/landing/css/landing.css                     ║
   ║                                                                          ║
   ║   Loaded AFTER _shared/css/{tokens,base,components}.css. Sets the         ║
   ║   indigo theme on :root and adds Personal-only sections (laptop hero    ║
   ║   mockup, privacy 2-col, download platform grid).                        ║
   ╚══════════════════════════════════════════════════════════════════════════╝ */


/* ── Theme override (Personal indigo + amber accent) ─────────────────────── */
:root {
    --theme-primary:        #4338ca;
    --theme-primary-dark:   #3730a3;
    --theme-primary-darker: #312e81;
    --theme-primary-light:  #eef2ff;
    --theme-primary-tint:   #e0e7ff;
    --theme-accent:         #f59e0b;
    --theme-accent-dark:    #d97706;
}


/* ════════════════════════════════════════════════════════════════════════════
   HERO — laptop visual
   ════════════════════════════════════════════════════════════════════════════ */
.hero-meta {
    margin-top: var(--space-md);
    color: var(--neutral-text-muted);
    font-size: var(--fs-sm);
}
.hero-meta strong {
    color: var(--theme-primary);
    font-weight: var(--fw-semibold);
}

/* "No cloud · No telemetry · No subscription · Full data export" pill row */
.hero-pillars {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: var(--space-md) 0 var(--space-lg);
    padding: 0;
}
.hero-pillars li {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    background: var(--theme-primary-tint);
    color: var(--theme-primary-dark);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: var(--fw-semibold);
}
.hero-pillars li::before {
    content: '✓';
    color: var(--theme-primary);
}

/* ── "The problem" section ─────────────────────────────────────────────── */
.problem {
    background: var(--neutral-cream-dark);
    border-top: 1px solid var(--neutral-border-light);
    border-bottom: 1px solid var(--neutral-border-light);
}
.problem-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: var(--space-md);
}
.problem-text {
    font-size: var(--fs-md);
    color: var(--neutral-text-body);
    line-height: var(--lh-relaxed);
}

/* ── Pricing extras ────────────────────────────────────────────────────── */
.price-target {
    font-size: 0.82rem;
    color: var(--neutral-text-muted);
    margin-bottom: 0.5rem;
}
.price-currency {
    font-size: 1.4rem;
    vertical-align: super;
    font-weight: var(--fw-semibold);
}
.price-divider {
    height: 1px;
    background: var(--neutral-border-light);
    margin: 1.25rem 0;
}
.price-feature strong {
    color: var(--theme-primary-dark);
    font-weight: var(--fw-semibold);
}
.pricing-guarantee {
    margin: var(--space-2xl) auto 0;
    padding: var(--space-md) var(--space-xl);
    background: var(--theme-primary-light);
    border: 1px solid var(--theme-primary-tint);
    border-radius: var(--radius-lg);
    font-size: var(--fs-sm);
    color: var(--neutral-text-body);
    line-height: var(--lh-relaxed);
    max-width: 720px;
}
.pricing-guarantee strong {
    color: var(--theme-primary-dark);
    font-weight: var(--fw-semibold);
}

.laptop-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.laptop-card-bezel {
    background: #1f2937;
    border-radius: 14px 14px 4px 4px;
    padding: 12px 12px 16px;
    box-shadow: var(--shadow-xl);
}
.laptop-card-base {
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    height: 14px;
    margin: 0 -16px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
}
.laptop-card-base::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #64748b;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.laptop-screen {
    background: var(--neutral-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
}
.laptop-screen-header {
    background: var(--neutral-cream-dark);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid var(--neutral-border-light);
}
.laptop-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
}
.laptop-dot-red   { background: #ef4444; }
.laptop-dot-amber { background: #f59e0b; }
.laptop-dot-green { background: #22c55e; }
.laptop-screen-title {
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--neutral-text-muted);
}
.laptop-screen-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.laptop-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: var(--theme-primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}
.laptop-row-icon {
    font-size: 1rem;
    text-align: center;
}
.laptop-row-label {
    font-weight: var(--fw-medium);
    color: var(--neutral-text-dark);
}
.laptop-row-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--theme-primary-dark);
}
.laptop-row-foot {
    background: transparent;
    color: var(--neutral-text-muted);
    font-size: 0.72rem;
    font-family: var(--font-mono);
    justify-content: center;
    margin-top: auto;
    padding-top: 0.4rem;
    border-top: 1px dashed var(--neutral-border-light);
    grid-template-columns: 1fr;
    text-align: center;
}


/* ════════════════════════════════════════════════════════════════════════════
   HOW IT WORKS — re-uses Nursery's how-step pattern
   ════════════════════════════════════════════════════════════════════════════ */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--theme-primary) 0%, var(--theme-accent) 100%);
    opacity: 0.25;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--neutral-white);
    background: var(--theme-primary);
    box-shadow: 0 4px 16px rgba(67, 56, 202, 0.2);
}
.how-step:nth-child(2) .how-step-num { background: var(--theme-primary-dark); }
.how-step:nth-child(3) .how-step-num {
    background: var(--theme-accent);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
}
.how-step h3 { font-size: var(--fs-lg); margin-bottom: 0.4rem; }
.how-step p {
    font-size: 0.9rem;
    color: var(--neutral-text-muted);
    max-width: 280px;
    margin: 0 auto;
}


/* ════════════════════════════════════════════════════════════════════════════
   PRIVACY — 2-col with pillars
   ════════════════════════════════════════════════════════════════════════════ */
.privacy {
    background: var(--neutral-cream-dark);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
}

.privacy-content p {
    font-size: var(--fs-md);
    color: var(--neutral-text-body);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
}
.privacy-content em {
    color: var(--theme-primary-dark);
    font-style: italic;
}
.privacy-content strong {
    color: var(--neutral-text-dark);
    font-weight: var(--fw-semibold);
}

.privacy-pillars {
    display: grid;
    gap: var(--space-md);
}
.privacy-pillar {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-border-light);
}
.privacy-pillar-icon {
    width: 44px; height: 44px;
    background: var(--theme-primary-tint);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.privacy-pillar h3 {
    font-size: var(--fs-md);
    margin-bottom: 0.2rem;
    color: var(--neutral-text-dark);
}
.privacy-pillar p {
    font-size: 0.85rem;
    color: var(--neutral-text-muted);
    line-height: 1.45;
}


/* ════════════════════════════════════════════════════════════════════════════
   DOWNLOAD — platform grid
   ════════════════════════════════════════════════════════════════════════════ */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.download-card {
    background: var(--neutral-white);
    border: 1.5px solid var(--neutral-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    align-items: center;
}
.download-card-available {
    border-color: var(--theme-primary);
    box-shadow: 0 12px 30px var(--theme-primary-tint);
}
.download-card-soon {
    background: var(--neutral-cream-dark);
}
.download-card-soon .btn {
    opacity: 0.65;
    cursor: not-allowed;
}

.download-os {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--neutral-text-dark);
}
.download-meta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--neutral-text-muted);
}
.download-foot {
    font-size: 0.78rem;
    color: var(--neutral-text-muted);
    line-height: 1.45;
}
.download-foot a {
    color: var(--theme-primary);
    font-weight: var(--fw-semibold);
}

.download-note {
    color: var(--neutral-text-muted);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    max-width: 720px;
    margin: 0 auto;
}

.download-requirements {
    max-width: 720px;
    margin: 0 auto;
    background: var(--neutral-white);
    border: 1px solid var(--neutral-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}
.download-requirements h3 {
    font-size: var(--fs-md);
    color: var(--neutral-text-dark);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
}
.download-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.download-requirements li {
    font-size: var(--fs-sm);
    color: var(--neutral-text-body);
    line-height: var(--lh-relaxed);
    padding-left: 1.4rem;
    position: relative;
}
.download-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--theme-primary);
    font-weight: var(--fw-bold);
}
.download-requirements-foot {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-border-light);
    font-size: 0.85rem;
    color: var(--neutral-text-muted);
    line-height: var(--lh-relaxed);
}


/* ════════════════════════════════════════════════════════════════════════════
   MOBILE — Personal-specific stacking
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .privacy-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .download-grid { grid-template-columns: repeat(2, 1fr); }
    .download-grid .download-card:last-child {
        grid-column: span 2;
        max-width: 420px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .how-steps { grid-template-columns: 1fr; gap: var(--space-xl); }
    .how-steps::before { display: none; }
    .download-grid { grid-template-columns: 1fr; }
    .download-grid .download-card:last-child { grid-column: auto; max-width: none; }
    .laptop-card { max-width: 360px; }
}
