/* MyTimeKeep — Landing Page Styles */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:       #080c14;
    --bg-card:  #0d1420;
    --bg-dark:  #060a10;
    --border:   rgba(255,255,255,0.06);
    --text:     #e2e8f0;
    --text-dim: #8892a4;
    --cyan:     #00d4ff;
    --purple:   #7b2fff;
    --green:    #00ff9f;
    --red:      #ff3a5c;
    --yellow:   #ffb700;
    --radius:   12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

/* ── Header / Nav ─────────────────────────────────────────── */
.lp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.lp-header.scrolled {
    background: rgba(8,12,20,0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.lp-logo svg { color: var(--cyan); }
.lp-logo:hover { color: #fff; }

.lp-nav-links {
    display: flex;
    gap: 2rem;
}
.lp-nav-links a {
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
.lp-nav-links a:hover { color: #fff; }

.lp-nav-mobile-signin { display: none; }

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: .25rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .25s;
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.lp-btn-primary:hover {
    color: #fff;
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
    transform: translateY(-1px);
}

.lp-btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text);
    border: 1px solid var(--border);
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}

.lp-btn-lg { padding: .8rem 1.75rem; font-size: 1rem; }
.lp-btn-block { width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.lp-hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, rgba(123,47,255,0.04) 40%, transparent 70%);
    pointer-events: none;
}

.lp-hero-inner { position: relative; }

.lp-hero-badge {
    display: inline-block;
    padding: .4rem 1rem;
    border-radius: 100px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.15);
    color: var(--cyan);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.lp-hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.lp-gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.lp-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.lp-stat { text-align: center; }
.lp-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.lp-stat-label {
    font-size: .8rem;
    color: var(--text-dim);
    font-weight: 500;
}
.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Sections ─────────────────────────────────────────────── */
.lp-section {
    padding: 6rem 0;
}
.lp-section-dark {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-badge {
    display: inline-block;
    padding: .3rem .8rem;
    border-radius: 100px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.12);
    color: var(--cyan);
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.lp-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.lp-section-sub {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ── Features Grid ────────────────────────────────────────── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.lp-feature-card:hover {
    border-color: rgba(0,212,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,212,255,0.08);
    color: var(--accent, var(--cyan));
    margin-bottom: 1.25rem;
}

.lp-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.lp-feature-card p {
    font-size: .9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ── Steps ────────────────────────────────────────────────── */
.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.lp-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem 1.5rem;
}

.lp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.lp-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.lp-step p {
    font-size: .9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.lp-step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: .3;
    margin-top: 4.5rem;
    flex-shrink: 0;
}

/* ── Pricing ──────────────────────────────────────────────── */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.lp-pricing-3col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    gap: 1.5rem;
}

.lp-pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color .3s, transform .3s;
}
.lp-pricing-card:hover {
    transform: translateY(-4px);
}

.lp-pricing-featured {
    border-color: rgba(0,212,255,0.25);
    box-shadow: 0 0 40px rgba(0,212,255,0.06);
}

.lp-pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: .3rem 1rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

.lp-pricing-header { margin-bottom: 2rem; }
.lp-pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
}

.lp-pricing-price {
    display: flex;
    align-items: baseline;
    gap: .25rem;
    margin-bottom: .5rem;
}

.lp-pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dim);
}
.lp-pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}
.lp-pricing-period {
    font-size: .9rem;
    color: var(--text-dim);
    font-weight: 500;
}

.lp-pricing-desc {
    font-size: .9rem;
    color: var(--text-dim);
}

.lp-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.lp-pricing-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text);
}
.lp-pricing-features li svg { color: var(--green); flex-shrink: 0; }

/* ── CTA ──────────────────────────────────────────────────── */
.lp-cta {
    padding: 6rem 0;
}

.lp-cta-inner {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(123,47,255,0.06));
    border: 1px solid rgba(0,212,255,0.1);
    position: relative;
    overflow: hidden;
}

.lp-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}
.lp-cta-inner p {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.lp-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.lp-footer-brand p {
    color: var(--text-dim);
    font-size: .9rem;
    margin-top: .75rem;
    max-width: 280px;
    line-height: 1.6;
}

.lp-footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.lp-footer-links h4 {
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.lp-footer-links a {
    color: var(--text-dim);
    font-size: .85rem;
    transition: color .2s;
}
.lp-footer-links a:hover { color: var(--cyan); }

.lp-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: .8rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .lp-pricing-grid { grid-template-columns: 1fr !important; max-width: 440px; margin: 0 auto; }
    .lp-steps { flex-direction: column; align-items: center; }
    .lp-step-connector { width: 2px; height: 40px; margin: 0; }
    .lp-section { padding: 4rem 0; }
    .lp-cta-inner { padding: 2.5rem 1.5rem; }
}

@media (max-width: 640px) {
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-hero { padding: 7rem 0 3rem; }
    .lp-hero-sub { font-size: 1rem; }
    .lp-hero-actions { flex-direction: column; align-items: center; }
    .lp-section { padding: 3rem 0; }
    .lp-section-header { margin-bottom: 2.5rem; }

    .lp-nav {
        padding: 0 1rem;
    }
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(8,12,20,0.95);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        z-index: 50;
    }
    .lp-nav-links.open { display: flex; }
    .lp-nav-links a { padding: .75rem 0; border-bottom: 1px solid var(--border); }

    .lp-mobile-toggle { display: block; }

    .lp-nav-actions .lp-btn-ghost,
    .lp-nav-actions .lp-btn-primary { display: none; }
    .lp-nav-mobile-signin { display: block !important; }

    .lp-hero-stats { gap: 1.5rem; }
    .lp-stat-divider { display: none; }

    .lp-cta-inner { padding: 2rem 1rem; border-radius: 12px; }
    .lp-footer { padding: 2rem 0 1.5rem; }
    .lp-footer-grid { gap: 1.5rem; }

    .container { padding: 0 1rem; }
}
