/* ============================================================
   The product's own page. Loaded only here, so nothing on it can
   reach the admin or the public event pages.
   ============================================================ */

.lp {
    background: var(--dt-surface);
    color: var(--dt-text);
    font-family: var(--dt-font);
}

/* ---------- Bar ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgb(from var(--dt-sidebar-bg) r g b / 92%);
    backdrop-filter: blur(10px);
    border-block-end: 1px solid rgba(255, 255, 255, .08);
}

.lp-brand {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.lp-brand-accent { color: var(--dt-accent); }

.lp-navlink {
    color: #D8D2CE;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 500;
    padding: .45rem .8rem;
    border-radius: 8px;
}

.lp-navlink:hover { background: rgba(255, 255, 255, .08); color: #fff; }

/* ---------- Hero ---------- */
.lp-hero {
    background: linear-gradient(160deg, #302A28 0%, #1B1817 100%);
    color: #F5EFEA;
    padding: 4.5rem 0 5rem;
}

.lp-hero h1 {
    font-size: clamp(1.9rem, 5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
}

.lp-hero .lp-accent { color: var(--dt-accent); }

.lp-hero .lp-sub {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: #CFC7C2;
    max-width: 34em;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgb(from var(--dt-accent) r g b / 14%);
    color: var(--dt-accent);
    border: 1px solid rgb(from var(--dt-accent) r g b / 30%);
    border-radius: 2rem;
    padding: .35rem 1rem;
    font-size: .85rem;
    font-weight: 600;
}

.lp-hero .btn-outline-light { border-color: rgba(255, 255, 255, .3); }

/* The product drawn rather than photographed, so the page shows the thing itself. */
.lp-hero-card {
    max-width: 260px;
    margin-inline: auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    transform: rotate(-3deg);
}

.lp-hero-card-top { height: 88px; background: linear-gradient(135deg, var(--dt-primary), var(--dt-accent)); }
.lp-hero-card-body { padding: 1rem 1.1rem 1.3rem; }

.lp-hero-qr {
    display: grid;
    place-items: center;
    font-size: 5.5rem;
    color: #20232B;
    line-height: 1;
    margin-block: .2rem .8rem;
}

.lp-hero-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .2rem;
    color: #69717D;
}

.lp-hero-row:nth-child(odd) { background: #FAF0E6; border-radius: 6px; }
.lp-hero-row span { display: block; height: .6rem; flex: 1; background: #E8EAEE; border-radius: 3px; }

/* ---------- Sections ---------- */
.lp-section { padding: 4.25rem 0; }
.lp-section-tinted { background: var(--dt-bg); }

.lp-section h2 {
    font-size: clamp(1.45rem, 3.4vw, 2.1rem);
    font-weight: 800;
}

.lp-muted { color: var(--dt-muted); }

.lp-feature {
    background: var(--dt-surface);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius);
    padding: 1.6rem;
    height: 100%;
    transition: transform .18s, box-shadow .18s;
}

.lp-feature:hover { transform: translateY(-3px); box-shadow: var(--dt-shadow); }

.lp-feature .lp-ico {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .8rem;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: var(--dt-cream);
    color: var(--dt-primary);
    margin-bottom: .9rem;
}

.lp-channel {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    background: var(--dt-bg);
    border: 1px solid var(--dt-border);
    border-radius: var(--dt-radius-sm);
    padding: 1rem;
    height: 100%;
}

.lp-channel > .bi { font-size: 1.3rem; color: var(--dt-primary); }

.lp-step { text-align: center; }

.lp-step .lp-num {
    width: 2.9rem;
    height: 2.9rem;
    margin: 0 auto .8rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: var(--dt-primary);
    color: #fff;
}

.lp-tag {
    background: var(--dt-cream);
    border: 1px solid var(--dt-border);
    color: var(--dt-text);
    border-radius: 2rem;
    padding: .45rem 1.1rem;
    font-size: .9rem;
    font-weight: 500;
}

/* ---------- Contact ---------- */
.lp-contact {
    background: var(--dt-surface);
    border-radius: var(--dt-radius);
    box-shadow: var(--dt-shadow);
    overflow: hidden;
}

.lp-contact-aside {
    background: linear-gradient(150deg, #302A28, #1B1817);
    color: #F5EFEA;
    padding: 2.25rem;
}

.lp-contact-aside a { text-decoration: none; }

/* ---------- Footer ---------- */
.lp-footer {
    background: var(--dt-sidebar-bg);
    color: #D8D2CE;
    padding: 1.5rem 0;
}
