/* ============================================================
   landing.css — Light (default) + Dark (data-theme="dark")
   Fonts: Bricolage Grotesque (display) + Geist (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Geist:wght@300;400;500;600&family=Geist+Mono:wght@400;500&display=swap');

/* ── Light theme (default) ── */
:root {
    --lp-bg:          oklch(98.5% 0.004 80);
    --lp-bg-card:     oklch(100% 0 0);
    --lp-bg-elevated: oklch(95% 0.006 80);
    --lp-border:      oklch(88% 0.008 80);
    --lp-border-strong: oklch(78% 0.010 80);
    --lp-text:        oklch(14% 0.012 80);
    --lp-text-muted:  oklch(42% 0.010 80);
    --lp-text-dim:    oklch(62% 0.007 80);
    --lp-accent:      oklch(52% 0.22 263);
    --lp-accent-dark: oklch(44% 0.22 263);
    --lp-accent-light:oklch(95% 0.04 263);
    --lp-accent-text: oklch(44% 0.22 263);
    --lp-danger:      oklch(50% 0.18 25);
    --lp-nav-bg:      oklch(98.5% 0.004 80 / 0.92);
    --lp-font:        'Geist', 'Inter', sans-serif;
    --lp-font-display:'Bricolage Grotesque', sans-serif;
    --lp-font-mono:   'Geist Mono', monospace;
    --lp-radius:      10px;
    --lp-radius-sm:   6px;
    --lp-shadow-sm:   0 1px 3px oklch(14% 0.012 80 / 0.08), 0 1px 2px oklch(14% 0.012 80 / 0.04);
    --lp-shadow:      0 4px 16px oklch(14% 0.012 80 / 0.08), 0 2px 6px oklch(14% 0.012 80 / 0.04);
    --lp-shadow-lg:   0 16px 48px oklch(14% 0.012 80 / 0.10), 0 4px 12px oklch(14% 0.012 80 / 0.06);
}

/* ── Dark theme (opt-in) ── */
[data-theme="dark"] {
    --lp-bg:          oklch(13% 0.012 263);
    --lp-bg-card:     oklch(17% 0.012 263);
    --lp-bg-elevated: oklch(21% 0.014 263);
    --lp-border:      oklch(26% 0.016 263);
    --lp-border-strong: oklch(34% 0.016 263);
    --lp-text:        oklch(94% 0.006 263);
    --lp-text-muted:  oklch(68% 0.008 263);
    --lp-text-dim:    oklch(44% 0.010 263);
    --lp-accent:      oklch(68% 0.20 263);
    --lp-accent-dark: oklch(60% 0.20 263);
    --lp-accent-light:oklch(22% 0.06 263);
    --lp-accent-text: oklch(68% 0.20 263);
    --lp-nav-bg:      oklch(13% 0.012 263 / 0.92);
    --lp-shadow-sm:   0 1px 3px oklch(0% 0 0 / 0.30);
    --lp-shadow:      0 4px 16px oklch(0% 0 0 / 0.30);
    --lp-shadow-lg:   0 16px 48px oklch(0% 0 0 / 0.40);
}

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

body.lp-body {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: var(--lp-font);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--lp-nav-bg);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    border-bottom: 1px solid var(--lp-border);
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--lp-text);
    font-family: var(--lp-font-display);
    font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em;
}
.lp-nav-logo {
    width: 30px; height: 30px;
    background: var(--lp-accent);
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 13px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.lp-nav-links { display: flex; align-items: center; gap: 0.25rem; }
.lp-nav-link {
    color: var(--lp-text-muted); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    padding: 6px 12px; border-radius: var(--lp-radius-sm);
    transition: color 0.15s, background 0.15s;
}
.lp-nav-link:hover { color: var(--lp-text); background: var(--lp-bg-elevated); }

/* ── Buttons ── */
.lp-btn-primary {
    background: var(--lp-accent);
    color: #fff; border: none; border-radius: var(--lp-radius-sm);
    padding: 9px 22px; font-size: 0.875rem; font-weight: 600;
    font-family: var(--lp-font);
    cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; gap: 6px;
    transition: background 0.15s, box-shadow 0.15s;
    letter-spacing: -0.01em;
}
.lp-btn-primary:hover {
    background: var(--lp-accent-dark); color: #fff;
    box-shadow: 0 4px 12px oklch(42% 0.148 145 / 0.30);
}
.lp-btn-outline {
    background: transparent;
    color: var(--lp-text-muted);
    border: 1px solid var(--lp-border-strong);
    border-radius: var(--lp-radius-sm);
    padding: 9px 22px; font-size: 0.875rem; font-weight: 500;
    font-family: var(--lp-font);
    cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; gap: 6px;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.lp-btn-outline:hover {
    border-color: var(--lp-accent); color: var(--lp-accent);
    background: var(--lp-accent-light);
}

/* ── Main wrapper ── */
.lp-main { padding-top: 60px; }
.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.lp-container-wide { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }

/* ── Section spacing ── */
.lp-section { padding: clamp(64px, 10vw, 96px) 0; }

/* ── Section labels ── */
.lp-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--lp-accent);
    margin-bottom: 0.875rem;
}
.lp-section-title {
    font-family: var(--lp-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.1; margin-bottom: 1rem; color: var(--lp-text);
}
.lp-section-subtitle {
    color: var(--lp-text-muted); font-size: 1rem;
    max-width: 52ch; line-height: 1.65;
}

/* ── Hero ── */
.lp-hero {
    padding: clamp(80px, 14vw, 128px) 0 clamp(64px, 10vw, 96px);
}
.lp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
@media (max-width: 860px) {
    .lp-hero-inner { grid-template-columns: 1fr; }
    .lp-hero-visual { display: none; }
}

.lp-hero-kicker {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--lp-accent);
    margin-bottom: 1.25rem;
}
.lp-hero-title {
    font-family: var(--lp-font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.25rem;
    color: var(--lp-text);
}
.lp-hero-title em {
    font-style: normal;
    color: var(--lp-accent);
}
.lp-hero-subtitle {
    color: var(--lp-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    max-width: 44ch;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.lp-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.lp-hero-ctas .lp-btn-primary { padding: 12px 28px; font-size: 0.95rem; border-radius: var(--lp-radius-sm); }
.lp-hero-ctas .lp-btn-outline  { padding: 12px 28px; font-size: 0.95rem; border-radius: var(--lp-radius-sm); }

.lp-trust {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    color: var(--lp-text-dim); font-size: 0.8rem;
}
.lp-trust-item { display: flex; align-items: center; gap: 6px; }
.lp-trust-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--lp-accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--lp-accent); font-size: 10px; flex-shrink: 0;
}

/* ── Hero visual (UI mockup) ── */
.lp-hero-visual {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 20px;
    box-shadow: var(--lp-shadow-lg);
}
.lp-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.lp-kpi {
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm); padding: 12px;
}
.lp-kpi-label {
    color: var(--lp-text-dim); font-size: 0.68rem;
    text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px;
}
.lp-kpi-value {
    font-family: var(--lp-font-mono); font-size: 1.15rem; font-weight: 500;
    color: var(--lp-text);
}
.lp-kpi-value.green { color: var(--lp-accent); }
.lp-kpi-value.amber { color: oklch(58% 0.16 60); }
.lp-mock-table { width: 100%; border-collapse: collapse; font-size: 0.74rem; }
.lp-mock-table th {
    color: var(--lp-text-dim); font-weight: 500;
    padding: 6px 8px; text-align: left;
    border-bottom: 1px solid var(--lp-border);
}
.lp-mock-table td {
    padding: 7px 8px;
    border-bottom: 1px solid var(--lp-border);
    color: var(--lp-text-muted);
    font-family: var(--lp-font-mono);
}
.lp-mock-table td:first-child { font-family: var(--lp-font); color: var(--lp-text); }
.lp-mock-table tr:last-child td { border-bottom: none; }
.lp-badge {
    display: inline-block; font-size: 0.65rem; font-family: var(--lp-font);
    padding: 2px 8px; border-radius: 20px; font-weight: 600;
}
.lp-badge.paid {
    background: var(--lp-accent-light); color: var(--lp-accent);
}
.lp-badge.open {
    background: oklch(95% 0.04 80); color: oklch(52% 0.12 60);
}

/* ── Divider ── */
.lp-divider { border: none; border-top: 1px solid var(--lp-border); }

/* ── Features ── */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--lp-border);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    margin-top: 2.5rem;
}
@media (max-width: 860px) { .lp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .lp-features-grid { grid-template-columns: 1fr; } }

.lp-feature-tile {
    background: var(--lp-bg-card);
    padding: 1.75rem;
    transition: background 0.15s;
}
.lp-feature-tile:hover { background: var(--lp-accent-light); }

.lp-feature-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: 1rem;
    color: var(--lp-accent);
}
.lp-feature-name {
    font-family: var(--lp-font-display);
    font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.4rem; color: var(--lp-text);
    letter-spacing: -0.01em;
}
.lp-feature-desc { color: var(--lp-text-muted); font-size: 0.85rem; line-height: 1.55; }

/* ── Pricing ── */
.lp-pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 3rem;
}
@media (max-width: 768px) { .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; } }

.lp-plan-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem; display: flex; flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s;
}
.lp-plan-card:hover { box-shadow: var(--lp-shadow); }
.lp-plan-card.featured {
    border-color: var(--lp-accent);
    box-shadow: var(--lp-shadow-sm);
}
.lp-plan-badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--lp-accent); color: #fff;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 3px 12px; border-radius: 20px;
    white-space: nowrap;
}
.lp-plan-name {
    font-family: var(--lp-font-display);
    font-weight: 700; font-size: 1rem;
    margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.lp-plan-price {
    font-family: var(--lp-font-mono);
    font-size: 2.2rem; font-weight: 500; line-height: 1;
    margin-bottom: 0.2rem; color: var(--lp-text);
}
.lp-plan-price-sub {
    color: var(--lp-text-dim); font-size: 0.8rem; margin-bottom: 1.5rem;
}
.lp-plan-features {
    list-style: none; padding: 0; margin-bottom: 1.75rem; flex: 1;
}
.lp-plan-features li {
    padding: 0.45rem 0;
    font-size: 0.875rem; color: var(--lp-text-muted);
    display: flex; align-items: flex-start; gap: 9px;
    border-bottom: 1px solid var(--lp-border);
}
.lp-plan-features li:last-child { border-bottom: none; }
.lp-plan-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--lp-accent-light); color: var(--lp-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0; margin-top: 2px;
}
.lp-plan-cta { margin-top: auto; }
.lp-plan-note {
    text-align: center; color: var(--lp-text-dim);
    font-size: 0.72rem; margin-top: 0.75rem;
}

/* ── Contact ── */
.lp-contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
@media (max-width: 768px) { .lp-contact-grid { grid-template-columns: 1fr; } }

.lp-contact-form input,
.lp-contact-form textarea {
    display: block; width: 100%;
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    color: var(--lp-text);
    padding: 10px 14px;
    font-family: var(--lp-font); font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.15s;
}
.lp-contact-form input:focus,
.lp-contact-form textarea:focus {
    outline: none; border-color: var(--lp-accent);
    box-shadow: 0 0 0 3px oklch(42% 0.148 145 / 0.10);
}
.lp-contact-form textarea { min-height: 120px; resize: vertical; }

/* ── Footer ── */
.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 2rem 0;
    background: var(--lp-bg-elevated);
}
.lp-footer-inner {
    display: flex;
    justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}
.lp-footer-copy { color: var(--lp-text-dim); font-size: 0.8rem; }
.lp-footer-links { display: flex; gap: 1.5rem; }
.lp-footer-links a {
    color: var(--lp-text-muted); text-decoration: none;
    font-size: 0.85rem; transition: color 0.15s;
}
.lp-footer-links a:hover { color: var(--lp-accent); }

/* ── Flash messages ── */
.lp-flash-success {
    background: var(--lp-accent-light); color: var(--lp-accent);
    padding: 12px 24px; text-align: center;
    font-size: 0.875rem; font-weight: 500;
    border-bottom: 1px solid oklch(42% 0.148 145 / 0.20);
}
.lp-flash-error {
    background: oklch(97% 0.02 25); color: oklch(45% 0.18 25);
    padding: 12px 24px; text-align: center;
    font-size: 0.875rem; font-weight: 500;
    border-bottom: 1px solid oklch(45% 0.18 25 / 0.20);
}

/* ============================================================
   AUTH / REGISTRATION PAGES
   ============================================================ */
.lp-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(2rem, 6vw, 4rem) 1.5rem;
}
.lp-auth-center     { width: 100%; max-width: 520px; }
.lp-auth-center-wide{ width: 100%; max-width: 820px; }
.lp-auth-card {
    background: var(--lp-bg-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 2rem 2.5rem;
    box-shadow: var(--lp-shadow);
}
.lp-auth-brand {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 2rem; text-decoration: none; color: var(--lp-text);
}
.lp-auth-brand-mark {
    width: 2.5rem; height: 2.5rem; background: var(--lp-accent);
    border-radius: 10px; display: grid; place-items: center;
    color: #fff; font-size: 1rem; font-weight: 800; flex-shrink: 0;
}
.lp-auth-brand-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.lp-auth-step  { font-size: 0.82rem; color: var(--lp-text-dim); margin-bottom: 0.35rem; }
.lp-auth-title {
    font-family: var(--lp-font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--lp-text); letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.lp-auth-subtitle { font-size: 0.9rem; color: var(--lp-text-muted); margin-top: -1rem; margin-bottom: 1.5rem; }

/* Progress bar */
.lp-reg-steps      { display: flex; gap: 4px; margin-bottom: 2rem; }
.lp-reg-step-bar   { flex: 1; height: 3px; border-radius: 2px; background: var(--lp-border); }
.lp-reg-step-bar.done { background: var(--lp-accent); }

/* Form elements */
.lp-field  { margin-bottom: 0.875rem; }
.lp-label  { display: block; font-size: 0.8rem; font-weight: 500; color: var(--lp-text-muted); margin-bottom: 5px; }
.lp-input  {
    width: 100%; padding: 0.6rem 0.875rem;
    border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm);
    background: var(--lp-bg); color: var(--lp-text);
    font-family: var(--lp-font); font-size: 0.925rem;
    transition: border-color 0.15s, box-shadow 0.15s; line-height: 1.5;
}
.lp-input:focus { outline: none; border-color: var(--lp-accent); box-shadow: 0 0 0 3px var(--lp-accent-light); }
.lp-input-mono { font-family: var(--lp-font-mono); }
.lp-hint   { font-size: 0.74rem; color: var(--lp-text-dim); margin-top: 4px; }
.lp-2col   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.lp-pc-col { display: grid; grid-template-columns: 120px 1fr; gap: 0.75rem; }

/* Radio pills */
.lp-radio-row { display: flex; gap: 8px; }
.lp-radio-pill {
    flex: 1; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm);
    padding: 9px; text-align: center; cursor: pointer; font-size: 0.875rem;
    color: var(--lp-text); background: var(--lp-bg); font-family: var(--lp-font);
    transition: border-color 0.15s, background 0.15s; user-select: none;
}
.lp-radio-pill input[type="radio"] { display: none; }
.lp-radio-pill.selected {
    border-color: var(--lp-accent); background: var(--lp-accent-light);
    color: var(--lp-accent-text); font-weight: 500;
}

/* Checkbox */
.lp-check-label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--lp-text); cursor: pointer; }

/* Section divider */
.lp-form-divider { height: 1px; background: var(--lp-border); margin: 1.25rem 0; }
.lp-section-tag  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--lp-text-dim); margin-bottom: 0.75rem; }

/* Errors */
.lp-errors {
    background: oklch(97% 0.015 25); color: oklch(40% 0.18 25);
    border: 1px solid oklch(88% 0.06 25); border-radius: var(--lp-radius-sm);
    padding: 12px 16px; margin-bottom: 1.5rem; font-size: 0.875rem;
}

/* Pattern preview box */
.lp-preview-box   { background: var(--lp-bg-elevated); border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm); padding: 12px 14px; margin-bottom: 1rem; }
.lp-preview-label { font-size: 0.72rem; color: var(--lp-text-dim); margin-bottom: 4px; }
.lp-preview-value { font-family: var(--lp-font-mono); color: var(--lp-accent); font-size: 1rem; }

/* Plan select cards */
.lp-plan-select { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.lp-plan-select-card {
    border: 1.5px solid var(--lp-border); border-radius: var(--lp-radius);
    padding: 1.25rem 1.5rem; cursor: pointer; background: var(--lp-bg-card);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-plan-select-card.selected { border-color: var(--lp-accent); box-shadow: 0 0 0 3px var(--lp-accent-light); }
.lp-plan-select-name  { font-weight: 700; color: var(--lp-text); margin-bottom: 0.2rem; }
.lp-plan-select-price { font-family: var(--lp-font-mono); font-size: 1.5rem; color: var(--lp-text); }
.lp-plan-select-sub   { font-size: 0.8rem; color: var(--lp-text-muted); margin-bottom: 0.25rem; }
.lp-plan-select-note  { font-size: 0.78rem; color: var(--lp-text-dim); }

/* Back button & form actions */
.lp-btn-back {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.6rem 1rem; border: 1px solid var(--lp-border); border-radius: var(--lp-radius-sm);
    color: var(--lp-text-muted); text-decoration: none; font-size: 0.9rem;
    background: var(--lp-bg-card); cursor: pointer; font-family: var(--lp-font);
    transition: border-color 0.15s;
}
.lp-btn-back:hover { border-color: var(--lp-border-strong); color: var(--lp-text); }
.lp-form-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.lp-form-row .lp-btn-primary { flex: 1; justify-content: center; padding: 11px; }

/* Auth icon (pending/success pages) */
.lp-auth-icon {
    width: 60px; height: 60px; background: var(--lp-accent-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.5rem; color: var(--lp-accent);
}

/* Footer / links */
.lp-auth-footer { margin-top: 1.25rem; text-align: center; font-size: 0.82rem; color: var(--lp-text-dim); }
.lp-auth-link   { color: var(--lp-accent); text-decoration: none; }
.lp-auth-link:hover { text-decoration: underline; }

/* Flash success in auth context */
.lp-auth-success {
    background: var(--lp-accent-light); color: var(--lp-accent-text);
    border: 1px solid var(--lp-accent-light); border-radius: var(--lp-radius-sm);
    padding: 12px 16px; margin-bottom: 1.5rem; font-size: 0.875rem;
}

@media (max-width: 540px) {
    .lp-auth-card { padding: 1.5rem; }
    .lp-2col, .lp-pc-col { grid-template-columns: 1fr; }
    .lp-plan-select { grid-template-columns: 1fr !important; }
}
