/* =============================================================================
   Catering marketing — editorial landing + auth
   ============================================================================= */

:root {
    --lp-ink: #141414;
    --lp-ink-soft: #3d3d3d;
    --lp-muted: #6b6b6b;
    --lp-line: #e4e0da;
    --lp-paper: #f3f0eb;
    --lp-white: #ffffff;
    --lp-accent: #c04e28;
    --lp-accent-dark: #9a3d20;
    --lp-dark: #141414;
    --lp-dark-soft: #1f1f1f;
    --lp-success: #2d6a4f;
    --lp-warn: #b8860b;
    --lp-font: "IBM Plex Sans", system-ui, sans-serif;
    --lp-serif: "Source Serif 4", Georgia, serif;
    --lp-radius: 12px;
    --lp-radius-lg: 20px;
    --lp-shadow: 0 24px 64px rgba(20, 20, 20, 0.08);
    --lp-shadow-lg: 0 40px 80px rgba(20, 20, 20, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

.mkt-site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--lp-font);
    background: var(--lp-paper);
    color: var(--lp-ink);
    -webkit-font-smoothing: antialiased;
}

.lp-wrap {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lp-muted { color: var(--lp-muted); }

/* Reveal animation */
.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-reveal--delay { transition-delay: 0.12s; }
.lp-reveal.is-visible { opacity: 1; transform: none; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--lp-font);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.lp-btn--sm { padding: 0.6rem 1.1rem; font-size: 0.82rem; }
.lp-btn--lg { padding: 1rem 1.75rem; font-size: 0.95rem; }
.lp-btn--block { width: 100%; }

.lp-btn--primary {
    background: var(--lp-ink);
    color: #fff !important;
    border-color: var(--lp-ink);
}

.lp-btn--primary:hover {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    color: #fff !important;
    transform: translateY(-1px);
}

.lp-btn--secondary {
    background: transparent;
    color: var(--lp-ink) !important;
    border-color: var(--lp-line);
}

.lp-btn--secondary:hover {
    border-color: var(--lp-ink);
    color: var(--lp-ink) !important;
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-ink-soft) !important;
    border-color: transparent;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.lp-btn--ghost:hover { color: var(--lp-ink) !important; }

/* Header */
.mkt-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(243, 240, 235, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, background 0.25s;
}

.mkt-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--lp-line);
}

.mkt-header__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mkt-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--lp-ink);
    flex-shrink: 0;
}

.mkt-brand__mark {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 6px;
    background: var(--lp-accent);
    flex-shrink: 0;
}

.mkt-brand__mark--sm { width: 1.35rem; height: 1.35rem; border-radius: 5px; }

.mkt-brand__name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.mkt-nav {
    display: none;
    gap: 2rem;
    margin-right: auto;
}

@media (min-width: 992px) { .mkt-nav { display: flex; } }

.mkt-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.mkt-nav a:hover { color: var(--lp-ink); }

.mkt-header__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mkt-header__toggle {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mkt-header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--lp-ink);
    border-radius: 1px;
    transition: transform 0.2s;
}

.mkt-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem 1rem;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-line);
}

.mkt-mobile-nav[hidden] { display: none !important; }

.mkt-mobile-nav a {
    padding: 0.85rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lp-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--lp-line);
}

.mkt-alert-bar { padding: 0.75rem 1.5rem 0; }

.mkt-flash-stack {
    position: fixed;
    top: calc(var(--mkt-header-offset, 5rem) + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 250;
    width: min(560px, calc(100vw - 2rem));
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.mkt-flash {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
    animation: mktFlashIn 0.35s ease;
}

.mkt-flash.is-hiding {
    animation: mktFlashOut 0.32s ease forwards;
}

.mkt-flash i.feather-check-circle,
.mkt-flash i.feather-alert-circle {
    flex-shrink: 0;
    font-size: 1.05rem;
}

.mkt-flash span {
    flex: 1;
    min-width: 0;
}

.mkt-flash__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.15rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: inherit;
    opacity: 0.65;
    cursor: pointer;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.mkt-flash__close:hover {
    opacity: 1;
    background: rgba(15, 23, 42, 0.06);
}

.mkt-flash--success {
    background: #ecfdf3;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mkt-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes mktFlashIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mktFlashOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-8px); }
}

/* Footer */
.mkt-footer {
    margin-top: auto;
    background: var(--lp-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 3.5rem 0 2rem;
}

.mkt-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .mkt-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.mkt-footer__brand-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.mkt-footer__tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 260px;
    margin: 0;
    opacity: 0.65;
}

.mkt-footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mkt-footer__links-col > span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.35rem;
}

.mkt-footer__links-col a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.mkt-footer__links-col a:hover { color: #fff; }

.mkt-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
    opacity: 0.45;
}

/* =============================================================================
   Landing page
   ============================================================================= */

.lp-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 1.25rem;
}

/* Hero */
.lp-hero {
    padding: 3rem 0 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .lp-hero { padding: 4.5rem 0 0; }
}

.lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .lp-hero__inner {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2rem;
    }
}

.lp-hero__title {
    font-family: var(--lp-serif);
    font-size: clamp(2.35rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--lp-ink);
}

.lp-hero__title em {
    font-style: italic;
    color: var(--lp-accent);
}

.lp-hero__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--lp-muted);
    max-width: 28rem;
    margin-bottom: 1.75rem;
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.lp-hero__checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lp-hero__checks li {
    font-size: 0.84rem;
    color: var(--lp-ink-soft);
    padding-left: 1.1rem;
    position: relative;
}

.lp-hero__checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lp-accent);
}

.lp-hero__visual {
    position: relative;
    min-height: 380px;
}

.lp-hero__visual-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    z-index: 0;
}

.lp-hero__visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(20%);
}

.lp-hero__visual .lp-mock {
    position: relative;
    z-index: 1;
    margin: 1.5rem 0 0 0;
    box-shadow: var(--lp-shadow-lg);
}

@media (min-width: 992px) {
    .lp-hero__visual .lp-mock { margin: 2rem 0 0 -1rem; }
}

/* Product mock */
.lp-mock {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    border: 1px solid var(--lp-line);
    overflow: hidden;
    font-size: 0.72rem;
}

.lp-mock__chrome {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    background: #fafafa;
    border-bottom: 1px solid var(--lp-line);
}

.lp-mock__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
}

.lp-mock__chrome span:first-child { background: #e8a598; }
.lp-mock__chrome span:nth-child(2) { background: #e8d598; }
.lp-mock__chrome span:nth-child(3) { background: #98c898; }

.lp-mock__url {
    margin-left: 0.5rem;
    font-size: 0.65rem;
    color: var(--lp-muted);
    font-weight: 500;
}

.lp-mock__layout {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 280px;
}

.lp-mock__sidebar {
    padding: 0.85rem 0.65rem;
    background: #faf9f7;
    border-right: 1px solid var(--lp-line);
}

.lp-mock__logo {
    width: 100%;
    height: 1.25rem;
    background: var(--lp-line);
    border-radius: 4px;
    margin-bottom: 0.85rem;
}

.lp-mock__nav {
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    color: var(--lp-muted);
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.lp-mock__nav.is-active {
    background: var(--lp-white);
    color: var(--lp-ink);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.lp-mock__main { padding: 0.85rem; }

.lp-mock__topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.lp-mock__topbar strong {
    display: block;
    font-size: 0.82rem;
    color: var(--lp-ink);
}

.lp-mock__topbar span {
    font-size: 0.65rem;
    color: var(--lp-muted);
}

.lp-mock__pill {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: #e8f5ee;
    color: var(--lp-success);
}

.lp-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.lp-mock__stat {
    padding: 0.45rem 0.5rem;
    background: #faf9f7;
    border-radius: 8px;
    border: 1px solid var(--lp-line);
}

.lp-mock__stat-val {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lp-ink);
}

.lp-mock__stat-lbl {
    font-size: 0.58rem;
    color: var(--lp-muted);
}

.lp-mock__table { border: 1px solid var(--lp-line); border-radius: 8px; overflow: hidden; }

.lp-mock__row {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.5fr 0.9fr;
    gap: 0.35rem;
    padding: 0.45rem 0.55rem;
    border-bottom: 1px solid var(--lp-line);
    align-items: center;
}

.lp-mock__row:last-child { border-bottom: 0; }

.lp-mock__row--head {
    background: #faf9f7;
    font-weight: 600;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lp-muted);
}

.lp-mock__status {
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    text-align: center;
}

.lp-mock__status--ok { background: #e8f5ee; color: var(--lp-success); }
.lp-mock__status--progress { background: #fef3e2; color: var(--lp-warn); }
.lp-mock__status--transit { background: #e8eef5; color: #3d5a80; }
.lp-mock__status--pending { background: #f0f0f0; color: var(--lp-muted); }

/* Ticker */
.lp-ticker {
    overflow: hidden;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-white);
    padding: 0.85rem 0;
    margin-top: 3.5rem;
}

.lp-ticker__track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: lpTicker 40s linear infinite;
}

.lp-ticker__track span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-muted);
    white-space: nowrap;
}

.lp-ticker__track span::after {
    content: "·";
    margin-left: 2.5rem;
    opacity: 0.35;
}

@keyframes lpTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Product section */
.lp-product {
    padding: 5rem 0;
    background: var(--lp-white);
}

.lp-product__header {
    max-width: 520px;
    margin-bottom: 3rem;
}

.lp-product__header h2,
.lp-section-head h2 {
    font-family: var(--lp-serif);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.lp-product__header p,
.lp-section-head p {
    color: var(--lp-muted);
    line-height: 1.65;
    margin: 0;
}

.lp-product__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .lp-product__grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
}

.lp-product__sticky {
    position: relative;
}

@media (min-width: 992px) {
    .lp-product__sticky { position: sticky; top: 6rem; align-self: start; }
}

.lp-product__photo {
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.lp-product__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-product-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-product-item:first-child { padding-top: 0; }
.lp-product-item:last-child { border-bottom: 0; }

.lp-product-item__idx {
    font-family: var(--lp-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lp-line);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
}

.lp-product-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.lp-product-item p {
    font-size: 0.9rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.55;
}

/* Bento */
.lp-bento {
    padding: 5rem 0;
    background: var(--lp-paper);
}

.lp-section-head {
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.lp-bento__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .lp-bento__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(160px, auto);
    }
    .lp-bento__cell--wide { grid-column: span 2; }
    .lp-bento__cell--tall { grid-row: span 2; }
}

.lp-bento__cell {
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.2s;
}

.lp-bento__cell:hover { border-color: #ccc; }

.lp-bento__tag {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-accent);
    margin-bottom: auto;
    padding-bottom: 1rem;
}

.lp-bento__cell h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.lp-bento__cell p {
    font-size: 0.85rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

.lp-bento__cell--tall {
    background: var(--lp-dark);
    border-color: var(--lp-dark);
    color: #fff;
}

.lp-bento__cell--tall .lp-bento__tag { color: var(--lp-accent); }
.lp-bento__cell--tall p { color: rgba(255,255,255,0.65); }

/* Flow */
.lp-flow {
    padding: 5rem 0;
    background: var(--lp-dark);
    color: #fff;
}

.lp-section-head--light h2 { color: #fff; }
.lp-section-head--light p { color: rgba(255,255,255,0.6); }

.lp-flow__track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
    margin-left: 0.5rem;
}

@media (min-width: 768px) {
    .lp-flow__track {
        grid-template-columns: repeat(4, 1fr);
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-left: 0;
        margin-top: 1rem;
    }
}

.lp-flow__step {
    padding: 1.5rem 1.25rem;
    position: relative;
}

@media (min-width: 768px) {
    .lp-flow__step { padding: 2rem 1.5rem 0; }
    .lp-flow__step::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 1.5rem;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--lp-accent);
    }
}

.lp-flow__step time {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--lp-accent);
    margin-bottom: 0.65rem;
}

.lp-flow__step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.lp-flow__step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.58);
    margin: 0;
    line-height: 1.5;
}

/* Audience */
.lp-audience {
    padding: 5rem 0;
    background: var(--lp-white);
}

.lp-audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--lp-line);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    overflow: hidden;
}

@media (min-width: 768px) {
    .lp-audience__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-audience-card {
    background: var(--lp-white);
    padding: 2rem 1.5rem;
}

.lp-audience-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-audience-card p {
    font-size: 0.88rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.55;
}

/* Pricing */
.lp-pricing {
    padding: 5rem 0;
    background: var(--lp-paper);
}

.lp-pricing__head {
    margin-bottom: 2.5rem;
}

.lp-pricing__head h2 {
    font-family: var(--lp-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lp-pricing__head p { color: var(--lp-muted); margin: 0; }

.lp-pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .lp-pricing__grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

.lp-price {
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 2rem 1.75rem;
    position: relative;
}

.lp-price--focus {
    border-color: var(--lp-ink);
    box-shadow: var(--lp-shadow);
}

.lp-price__tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-accent);
}

.lp-price h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.lp-price__amount {
    font-family: var(--lp-serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
}

.lp-price__amount small {
    font-family: var(--lp-font);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--lp-muted);
}

.lp-price__meta {
    font-size: 0.82rem;
    color: var(--lp-muted);
    margin-bottom: 1.5rem;
}

/* Close CTA */
.lp-close {
    padding: 4rem 0 5rem;
    background: var(--lp-white);
    border-top: 1px solid var(--lp-line);
}

.lp-close__inner {
    text-align: center;
    max-width: 480px;
}

.lp-close__inner h2 {
    font-family: var(--lp-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.lp-close__inner p {
    color: var(--lp-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* =============================================================================
   Auth pages (login / signup)
   Scoped palette — clean SaaS look (independent from editorial landing)
   ============================================================================= */

.mkt-auth-page {
    --lp-ink: #0f172a;
    --lp-ink-soft: #334155;
    --lp-muted: #64748b;
    --lp-line: #e2e8f0;
    --lp-paper: #f8fafc;
    --lp-white: #ffffff;
    --lp-accent: #3454d1;
    --lp-accent-dark: #2a43a8;
    --lp-dark: #0f172a;
    --lp-dark-soft: #1e293b;
    --lp-serif: "IBM Plex Sans", system-ui, sans-serif;
    --lp-radius: 12px;
    --lp-radius-lg: 16px;
    --lp-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --lp-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.05);

    min-height: 100vh;
    background: #f4f6f9;
    font-family: var(--lp-font);
    color: var(--lp-ink);
}

.mkt-auth-page .mkt-auth-card {
    border: 1px solid #e8ecf1;
    box-shadow: var(--lp-shadow-sm);
}

.mkt-auth-page .mkt-auth-card__title {
    font-family: var(--lp-font);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.mkt-auth-page .mkt-auth-card__head-icon,
.mkt-auth-page .mkt-login-option__icon {
    background: #eef2ff;
    color: var(--lp-accent);
}

.mkt-auth-page .mkt-login-option {
    border-color: #e8ecf1;
    background: #fff;
}

.mkt-auth-page .mkt-login-option:hover {
    border-color: #cbd5e1;
    box-shadow: var(--lp-shadow-sm);
}

.mkt-auth-page .mkt-auth-card__links a,
.mkt-auth-page .mkt-auth-card__footer-note a {
    color: var(--lp-accent);
}

.mkt-auth-page .mkt-auth-card--signup .mkt-signup-section {
    background: #f8fafc;
    border-color: #e8ecf1;
}

.mkt-auth-page .mkt-signup-plan__card {
    background: #fff;
    border-color: #e2e8f0;
}

.mkt-auth-page .mkt-signup-plan input:checked + .mkt-signup-plan__card {
    border-color: var(--lp-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(52, 84, 209, 0.14);
}

.mkt-auth-page .lp-btn--primary {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
}

.mkt-auth-page .lp-btn--primary:hover {
    background: var(--lp-accent-dark);
    border-color: var(--lp-accent-dark);
}

.mkt-auth-page .mkt-auth-slider {
    background: #0f172a;
}

.mkt-auth-page .mkt-auth-slider__progress-bar {
    background: var(--lp-accent);
}

.mkt-auth-page .mkt-locale-switcher__item.is-active,
.mkt-auth-page .mkt-locale-switcher__item:hover {
    background: #f1f5f9;
}

.mkt-auth-page .mkt-locale-switcher__item i {
    color: var(--lp-accent);
}

.mkt-auth-page .mkt-brand__icon {
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: #eef2ff;
    color: var(--lp-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt-auth-page .mkt-brand__icon--sm {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.9rem;
}

.mkt-auth-page .mkt-brand__name {
    font-weight: 700;
    color: var(--lp-ink);
}

body:has(.mkt-auth-page) .theme-customizer {
    display: none !important;
}

.mkt-auth-page__shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

@media (min-width: 992px) {
    .mkt-auth-page__shell {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }
}

.mkt-auth-slider {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background: var(--lp-dark);
    align-self: start;
}

.mkt-auth-slider__track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mkt-auth-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}

.mkt-auth-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.mkt-auth-slider__slide img,
.mkt-auth-slider__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.mkt-auth-slider__slide.is-active img,
.mkt-auth-slider__slide.is-active video { transform: scale(1); }

.mkt-auth-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, transparent 30%, rgba(20,20,20,0.92) 100%);
    color: #fff;
}

.mkt-auth-slider__badge {
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

.mkt-auth-slider__title {
    font-family: var(--lp-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0.85rem 0 0.5rem;
    max-width: 20rem;
    color: #fff;
}

.mkt-auth-slider__desc {
    max-width: 22rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin: 0;
}

.mkt-auth-slider__progress {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.mkt-auth-slider__progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: var(--lp-accent);
}

@keyframes mktAuthSliderProgress {
    from { width: 0; }
    to { width: 100%; }
}

.mkt-auth-slider__dots {
    position: absolute;
    left: clamp(2rem, 4vw, 3rem);
    bottom: clamp(1.25rem, 3vw, 2rem);
    z-index: 4;
    display: flex;
    gap: 0.4rem;
}

.mkt-auth-slider__dot {
    width: 1.75rem;
    height: 3px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
}

.mkt-auth-slider__dot.is-active { background: #fff; }

.mkt-locale-switcher { position: relative; }

.mkt-locale-switcher__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 2.2rem;
    padding: 0 0.75rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: var(--lp-white);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
}

.mkt-locale-switcher__btn::after { display: none; }
.mkt-locale-switcher__btn i { font-size: 0.85rem; }

.mkt-locale-switcher__menu {
    min-width: 10rem;
    padding: 0.35rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.mkt-locale-switcher__menu-head {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-muted);
}

.mkt-locale-switcher__item {
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 0.6rem;
}

.mkt-locale-switcher__item.is-active {
    background: var(--lp-paper);
    font-weight: 600;
}

.mkt-locale-switcher__item:hover {
    background: var(--lp-paper);
}

.mkt-locale-switcher form {
    margin: 0;
}

.mkt-locale-switcher__item i {
    font-size: 0.85rem;
    color: var(--lp-accent);
}

.mkt-locale-switcher__menu {
    background: var(--lp-white);
    z-index: 1050;
}

.mkt-locale-switcher__btn i,
.mkt-locale-switcher__btn span {
    color: inherit;
}

.mkt-auth-page .mkt-locale-switcher__menu {
    margin-top: 0.45rem !important;
}

.mkt-auth-page__main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    width: 100%;
}

.mkt-auth-page__main--signup {
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(1.5rem, 3vh, 2.5rem);
    padding-bottom: clamp(2rem, 4vh, 3rem);
    min-height: 100vh;
}

.mkt-auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    padding: 2rem;
}

.mkt-auth-card--wide { max-width: 500px; }

.mkt-auth-card--signup {
    max-width: 680px;
    padding: clamp(1.5rem, 3vw, 2rem);
}

.mkt-auth-card--signup .mkt-signup-form {
    margin-top: 1.25rem;
}

.mkt-auth-card--signup .mkt-signup-section {
    background: var(--lp-paper);
}

.mkt-auth-card--signup .mkt-signup-note {
    font-size: 0.82rem;
    padding: 0.75rem 1rem;
    border-radius: var(--lp-radius);
}

.mkt-auth-card--signup .form-control {
    border-color: var(--lp-line);
    border-radius: 10px;
}

.mkt-auth-card--signup .form-control:focus {
    border-color: var(--lp-ink);
    box-shadow: 0 0 0 3px rgba(20, 20, 20, 0.08);
}

.mkt-auth-card__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mkt-auth-card__title {
    font-family: var(--lp-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.mkt-auth-card__lead {
    font-size: 0.88rem;
    color: var(--lp-muted);
    line-height: 1.5;
}

.mkt-auth-card__head {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.mkt-auth-card__head-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--lp-paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-accent);
    flex-shrink: 0;
}

.mkt-auth-card__links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-accent);
    text-decoration: none;
}

.mkt-auth-card__footer-note {
    font-size: 0.8rem;
    color: var(--lp-muted);
}

.mkt-back-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lp-muted);
    text-decoration: none;
}

.mkt-back-link:hover { color: var(--lp-ink); }

.mkt-login-chooser { display: grid; gap: 0.75rem; margin-top: 1.25rem; }

.mkt-login-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    text-decoration: none;
    color: inherit;
    background: var(--lp-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mkt-login-option:hover {
    border-color: var(--lp-ink);
    box-shadow: var(--lp-shadow-sm, 0 4px 12px rgba(0,0,0,0.04));
}

.mkt-login-option__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    background: var(--lp-paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-accent);
    flex-shrink: 0;
}

.mkt-login-option__body { flex: 1; }
.mkt-login-option__body strong { display: block; font-size: 0.92rem; }
.mkt-login-option__body span { font-size: 0.8rem; color: var(--lp-muted); }
.mkt-login-option__arrow { color: #bbb; }

/* Signup */
.mkt-signup-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.mkt-signup-page__head {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.mkt-signup-page__head h1 {
    font-family: var(--lp-serif);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0.5rem 0;
}

.mkt-signup-page__head p { color: var(--lp-muted); line-height: 1.6; }

.mkt-signup-section {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--lp-white);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
}

.mkt-signup-section h2 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mkt-signup-section .form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
}

.mkt-signup-plan {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.mkt-signup-plan input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.mkt-signup-plan__card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    height: 100%;
    padding: 1.15rem 1rem;
    background: #fff;
    border: 2px solid var(--lp-line);
    border-radius: var(--lp-radius);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    pointer-events: none;
}

.mkt-signup-plan__card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-ink);
    line-height: 1.3;
}

.mkt-signup-plan__price {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--lp-ink);
    line-height: 1.3;
}

.mkt-signup-plan__modules {
    display: block;
    font-size: 0.78rem;
    color: var(--lp-muted);
    line-height: 1.4;
}

.mkt-signup-plan input:checked + .mkt-signup-plan__card {
    border-color: var(--lp-accent);
    background: #f8fafc;
    box-shadow: 0 0 0 3px rgba(52, 84, 209, 0.14);
}

.mkt-signup-plan:hover .mkt-signup-plan__card {
    border-color: #cbd5e1;
}

.mkt-signup-plans > [class*="col-"] {
    display: flex;
}

.mkt-signup-form__footer { margin-top: 2rem; text-align: center; }

.mkt-btn-primary {
    background: var(--lp-ink);
    border-color: var(--lp-ink);
    border-radius: 999px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .lp-hero__visual { min-height: 320px; }
    .lp-mock__layout { grid-template-columns: 110px 1fr; }
    .lp-mock__row { font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-reveal { opacity: 1; transform: none; transition: none; }
    .lp-ticker__track { animation: none; }
}
