/* ═══════════════════════════════════════════════════════════
   landing.css  —  SoleInventory marketing homepage styles
   Inherits CSS variables from base.css
   ═══════════════════════════════════════════════════════════ */

/* ─── Ambient background blobs ─────────────────────────── */

.lp-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    will-change: transform;
    animation: blob-drift 20s ease-in-out infinite alternate;
}

.lp-blob-1 {
    width: 680px;
    height: 680px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, #6366f1 0%, #8b5cf6 60%, transparent 100%);
    animation-duration: 22s;
}

.lp-blob-2 {
    width: 520px;
    height: 520px;
    bottom: 10%;
    left: -140px;
    background: radial-gradient(circle, #8b5cf6 0%, #6366f1 55%, transparent 100%);
    animation-duration: 28s;
    animation-direction: alternate-reverse;
}

.lp-blob-3 {
    width: 420px;
    height: 420px;
    top: 40%;
    left: 45%;
    background: radial-gradient(circle, #3b82f6 0%, #6366f1 60%, transparent 100%);
    opacity: 0.10;
    animation-duration: 34s;
}

@keyframes blob-drift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(30px, -20px) scale(1.04); }
    66%  { transform: translate(-20px, 30px) scale(0.97); }
    100% { transform: translate(20px, 10px) scale(1.02); }
}

/* Ensure all page content sits above blobs */
.lp-nav,
.lp-hero,
.lp-features,
.lp-how,
.lp-pricing,
.lp-faq,
.lp-cta-final,
footer {
    position: relative;
    z-index: 1;
}

/* ─── Shared layout shell ───────────────────────────────── */

.lp-shell {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Top navigation ────────────────────────────────────── */

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(243,243,246,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-brand-icon {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.lp-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.lp-nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

.lp-nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-nav-links a:hover { color: var(--text-primary); }

.lp-nav-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lp-nav-signin {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}

.lp-nav-signin:hover { color: var(--text-primary); background: var(--bg-hover); text-decoration: none; }

.lp-nav-start {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
}

.lp-nav-start:hover { opacity: 0.88; text-decoration: none; color: #fff; }
.lp-nav-start:active { transform: scale(0.98); }

@media (min-width: 700px) {
    .lp-nav-links { display: flex; }
}

/* ─── Hero ──────────────────────────────────────────────── */

.lp-hero {
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}


.lp-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.lp-hero-copy { max-width: 560px; }

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.18);
    margin-bottom: 22px;
}

.lp-h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.lp-h1 em {
    font-style: normal;
    color: var(--accent);
}

.lp-hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

.lp-hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
    letter-spacing: -0.01em;
}

.btn-hero-primary:hover { opacity: 0.88; text-decoration: none; color: #fff; }
.btn-hero-primary:active { transform: scale(0.98); }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; background: var(--accent-dim); }

.lp-hero-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── App mockup ────────────────────────────────────────── */

.lp-mockup-wrap {
    position: relative;
}

.lp-mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 50% 40%, rgba(99,102,241,0.12), transparent 60%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(24px);
}

.lp-mockup {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05), 0 20px 64px rgba(0,0,0,0.09);
    background: var(--bg-card);
}

.mockup-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 6px; flex-shrink: 0; }

.mockup-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #4ade80; }

.mockup-url {
    flex: 1;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    font-family: 'Inter', monospace;
    max-width: 220px;
    margin: 0 auto;
}

.mockup-body {
    display: flex;
    min-height: 340px;
}

.mockup-sidebar {
    width: 140px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mk-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px;
    margin-bottom: 10px;
}

.mk-brand-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.mk-brand-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
}

.mk-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: default;
}

.mk-nav.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.mk-nav-icon { font-size: 13px; flex-shrink: 0; }

.mockup-main {
    flex: 1;
    padding: 14px;
    background: var(--bg-page);
    overflow: hidden;
}

.mk-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mk-page-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.mk-badge {
    font-size: 10px;
    font-weight: 600;
    background: var(--green-dim);
    color: var(--green);
    padding: 2px 7px;
    border-radius: 10px;
    border: 1px solid rgba(22,163,74,0.15);
}

.mk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.mk-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px 10px;
}

.mk-stat-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.mk-stat-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.mk-stat-val.green { color: var(--green); }
.mk-stat-val.accent { color: var(--accent); }

.mk-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.mk-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    padding: 6px 10px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-page);
}

.mk-th {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mk-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;
    padding: 6px 10px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

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

.mk-td {
    font-size: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.mk-td.muted { color: var(--text-secondary); }
.mk-td.profit { color: var(--green); font-weight: 600; }

@media (min-width: 900px) {
    .lp-hero-inner {
        grid-template-columns: 1fr 1.1fr;
        gap: 64px;
    }

    .lp-h1 { font-size: 54px; }
    .lp-hero { padding: 96px 0 80px; }
}

@media (max-width: 680px) {
    .mockup-sidebar { display: none; }
    .mk-stats { grid-template-columns: repeat(2, 1fr); }
    .mk-stat-val { font-size: 14px; }
}

/* ─── Divider label ──────────────────────────────────────── */

.lp-divider {
    text-align: center;
    padding: 20px 0 8px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ─── Features section ──────────────────────────────────── */

.lp-features {
    padding: 80px 0 72px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lp-section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.lp-section-heading {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.15;
}

.lp-section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 520px;
}

.lp-features-header {
    margin-bottom: 52px;
}

.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .feat-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
    .feat-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-section-heading { font-size: 40px; }
}

.feat-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feat-card:hover {
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 4px 20px rgba(99,102,241,0.06);
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(99,102,241,0.15);
}

.feat-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feat-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── How it works ──────────────────────────────────────── */

.lp-how {
    padding: 80px 0 72px;
}

.lp-how-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-how-header .lp-section-sub {
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

@media (min-width: 700px) {
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.how-step {
    padding: 32px 28px;
    position: relative;
    text-align: center;
}

.how-step::before {
    display: none;
}

@media (min-width: 700px) {
    .how-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -8px;
        top: 40px;
        font-size: 20px;
        color: var(--border);
        z-index: 1;
    }
}

.how-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.how-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.how-step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ─── Pricing ────────────────────────────────────────────── */

.lp-pricing {
    padding: 80px 0 72px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lp-pricing-header {
    text-align: center;
    margin-bottom: 52px;
}

.lp-pricing-header .lp-section-sub {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 740px;
    margin: 0 auto;
}

@media (min-width: 620px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}

.price-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}

.price-card.pro {
    background: var(--bg-card);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(99,102,241,0.1);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.price-plan {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.price-card.pro .price-plan { color: var(--accent); }

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-currency { font-size: 22px; font-weight: 700; color: var(--text-primary); }
.price-cents    { font-size: 22px; font-weight: 700; color: var(--text-primary); align-self: flex-end; padding-bottom: 6px; white-space: nowrap; }

.price-value {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.price-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.4;
}

.price-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-dim);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid rgba(22,163,74,0.2);
    font-weight: 700;
}

.price-card.pro .price-check {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: rgba(99,102,241,0.2);
}

.price-x {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-hover);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid var(--border);
}

.price-li-muted { color: var(--text-muted); }

.price-cta {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
}

.price-cta:active { transform: scale(0.98); }

.price-cta-free {
    background: var(--bg-hover);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.price-cta-free:hover { background: var(--border); color: var(--text-primary); text-decoration: none; }

.price-cta-pro {
    background: var(--accent);
    color: #fff;
}

.price-cta-pro:hover { opacity: 0.88; color: #fff; text-decoration: none; }

.price-note {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── FAQ ────────────────────────────────────────────────── */

.lp-faq {
    padding: 80px 0 72px;
}

.lp-faq-header {
    text-align: center;
    margin-bottom: 52px;
}

.lp-faq-header .lp-section-sub {
    margin: 0 auto;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: inherit;
    transition: color 0.15s;
}

.faq-q:hover { color: var(--accent); }

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.2s, background 0.15s;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    background: var(--accent-dim);
    border-color: rgba(99,102,241,0.2);
    color: var(--accent);
}

.faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
}

.faq-item.open .faq-a { display: block; }

/* ─── Final CTA ──────────────────────────────────────────── */

.lp-cta {
    padding: 80px 0;
    background: var(--accent);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 300px at 20% 50%, rgba(255,255,255,0.08), transparent 60%),
        radial-gradient(ellipse 400px 300px at 80% 50%, rgba(255,255,255,0.05), transparent 60%);
    pointer-events: none;
}

.lp-cta-content { position: relative; }

.lp-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
    line-height: 1.1;
}

.lp-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: opacity 0.15s, transform 0.1s;
    letter-spacing: -0.01em;
}

.btn-cta-white:hover { opacity: 0.92; text-decoration: none; color: var(--accent); }
.btn-cta-white:active { transform: scale(0.98); }

.lp-cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (min-width: 700px) {
    .lp-cta h2 { font-size: 44px; }
}

/* ─── Footer ─────────────────────────────────────────────── */

.lp-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.lp-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.lp-footer-brand-icon {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.lp-footer-brand-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.lp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.lp-footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.lp-footer-links a:hover { color: var(--text-primary); }

.lp-footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 700px) {
    .lp-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .lp-footer-links { justify-content: flex-end; }
}
