/* ============================================================
   landing.css — the public front door
   ------------------------------------------------------------
   Loaded only by index.php, on top of style.css, so the app's
   own stylesheet stays about the app. Same palette and type as
   the product: blue for the wordmark, amber for growth, and
   nothing decorative that competes with the coverage bar.
   ============================================================ */

body.landing {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    margin: 0;
}

/* Bands span the window; the rail inside keeps the text at a readable
   measure. That is what makes a page feel full-width without becoming a
   wall of 200-character lines. */
.lp-band {
    width: 100%;
}

.lp-rail {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-band-tint {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.lp-band-hero {
    background: radial-gradient(
            760px 320px at 18% -10%,
            rgba(48, 105, 152, 0.1),
            transparent 70%
        ),
        radial-gradient(
            620px 300px at 88% 0%,
            rgba(232, 147, 12, 0.1),
            transparent 70%
        );
}

.lp-band-end {
    border-top: 1px solid var(--line);
}

/* ---------- top bar ---------- */

/* Fixed, full width, and translucent so the page moves under it. */
.lp-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(247, 249, 250, 0.82);
    backdrop-filter: blur(10px) saturate(1.4);
    -webkit-backdrop-filter: blur(10px) saturate(1.4);
    border-bottom: 1px solid var(--line);
}

.lp-bar-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* the fixed bar's height, so the hero does not start underneath it */
body.landing {
    padding-top: 76px;
}

/* the mark in the bar is the glass chip already; keep it compact */
.lp-bar .mark-stage .wordmark {
    padding: 6px 12px;
    font-size: 21px;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lp-nav a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 15px;
}

.lp-nav a:hover {
    color: var(--ink);
}

.lp-btn {
    display: inline-block;
    background: var(--rise);
    color: #fff !important;
    border-radius: var(--radius-sm);
    padding: 9px 16px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--rise-deep);
}

.lp-btn:hover {
    background: var(--rise-deep);
}

.lp-btn.big {
    padding: 13px 26px;
    font-size: 17px;
}

/* ---------- hero ---------- */

.lp-hero {
    padding-top: 74px;
    padding-bottom: 66px;
}

.lp-hero h1 {
    font-size: 46px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

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

.lp-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 0 24px;
}

.lp-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

/* ---------- the shelf, shown rather than described ---------- */

.lp-demo {
    padding-top: 0;
    padding-bottom: 66px;
    margin-top: -44px; /* the card lifts into the hero band */
}

.lp-demo-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: 0 2px 10px rgba(28, 43, 51, 0.04);
}

.lp-demo-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
}

.lp-bar-row {
    display: flex;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper-2);
}

.lp-seg {
    display: block;
    height: 100%;
}

.lp-seg.green {
    background: var(--ok, #2e7d4f);
}
.lp-seg.light {
    background: #8cc5a4;
}
.lp-seg.red {
    background: #d96a5b;
}

.lp-demo-note {
    margin: 10px 0 16px;
}

.lp-quote {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.lp-check {
    color: var(--ok, #2e7d4f);
    font-weight: 700;
}

.lp-check-name {
    font-size: 15px;
    color: var(--ink);
}

.lp-receipt {
    margin-top: 3px;
    font-style: italic;
}

/* ---------- three steps ---------- */

.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
    padding-top: 56px;
    padding-bottom: 56px;
}

.lp-step-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rise-bg);
    border: 1px solid var(--rise-line, #f0d5a6);
    color: var(--rise-deep);
    font-weight: 700;
    font-size: 14px;
}

.lp-step h3 {
    font-size: 17px;
    margin: 12px 0 6px;
}

.lp-step p {
    margin: 0;
    color: var(--ink-2);
    line-height: 1.6;
}

/* ---------- why ---------- */

.lp-why {
    padding-top: 64px;
    padding-bottom: 64px;
}

.lp-why h2,
.lp-end h2 {
    font-size: 26px;
    margin: 0 0 22px;
    letter-spacing: -0.01em;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px 30px;
}

.lp-why-item h3 {
    font-size: 16.5px;
    margin: 0 0 6px;
}

.lp-why-item p {
    margin: 0;
    color: var(--ink-2);
    line-height: 1.65;
}

.lp-why-item code {
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-size: 13.5px;
    background: var(--paper-2);
    padding: 1px 5px;
    border-radius: 4px;
}

/* ---------- closing ---------- */

.lp-end {
    padding-top: 64px;
    padding-bottom: 72px;
    text-align: center;
}

.lp-end .lp-lead {
    margin-left: auto;
    margin-right: auto;
}

.lp-end-note {
    margin-left: auto;
    margin-right: auto;
}

.lp-end-note {
    margin-top: 16px;
    max-width: 560px;
}

.lp-foot {
    border-top: 1px solid var(--line);
    background: var(--paper-2);
}

.lp-foot-inner {
    padding: 22px 32px 30px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.lp-foot a {
    color: var(--ink-2);
}

@media (max-width: 620px) {
    body.landing {
        padding-top: 70px;
    }

    .lp-rail,
    .lp-bar-inner,
    .lp-foot-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-hero {
        padding-top: 44px;
        padding-bottom: 46px;
    }

    .lp-hero h1 {
        font-size: 31px;
    }

    .lp-lead {
        font-size: 16.5px;
    }
}
