/* =========================================================
   CULSYSTEM — Landing Page
   Full custom design built on top of app.css design tokens.
   All sections: header, hero, stakeholders, creator grid,
   platform modules, business grid, footer.
   ========================================================= */

/* Local colour tokens (overrides for the landing page) */
:root {
    --lp-navy:        #0F1B2D;
    --lp-navy-2:      #1E3554;
    --lp-navy-dark:   #060D17;
    --lp-orange:      #F26B1F;
    --lp-orange-2:    #E15A0F;
    --lp-orange-soft: #FFF1E2;
    --lp-green:       #1F9D55;
    --lp-teal:        #14B8A6;
    --lp-gold:        #F59E0B;
    --lp-blue:        #2563EB;
    --lp-grad-band:   linear-gradient(135deg, #1F9D55 0%, #14B8A6 35%, #F59E0B 70%, #F26B1F 100%);
}

/* ═══ LANDING CONTAINER — extra horizontal breathing room ═══ */
.landing,
.lp-topbar,
.lp-ad-slider,
.lp-header,
.lp-hero,
.lp-stake-band,
.lp-band,
.lp-modules,
.lp-footer,
.lp-footer-cta,
.mp-hero,
.mp-flash,
.mp-body {
    overflow: hidden;
}
.landing .container,
.lp-topbar .container,
.lp-header .container,
.lp-hero .container,
.lp-stake-band .container,
.lp-band .container,
.lp-modules .container,
.lp-footer .container,
.lp-footer-cta .container,
.mp-hero .container,
.mp-flash .container,
.mp-body.container {
    padding-left: 60px;
    padding-right: 60px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* ═══ TOP UTILITY BAR ═══ */
.lp-topbar {
    background: var(--lp-navy);
    color: #fff;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    gap: 16px;
}
.lp-topbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.lp-topbar-nav a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0 14px;
    line-height: 40px;
    transition: color .15s;
    white-space: nowrap;
}
.lp-topbar-nav a:first-child { padding-left: 0; }
.lp-topbar-nav a:hover { color: var(--lp-orange) !important; }
.lp-topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.18);
    display: inline-block;
}
.lp-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.lp-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: color .15s;
}
.lp-topbar-phone svg { width: 16px; height: 16px; color: var(--lp-orange); flex-shrink: 0; }
.lp-topbar-phone:hover { color: var(--lp-orange) !important; }

.lp-topbar-verify {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lp-orange) !important;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity .15s;
}
.lp-topbar-verify svg { width: 16px; height: 16px; flex-shrink: 0; }
.lp-topbar-verify:hover { opacity: .85; }

/* ═══ ADVERTISEMENT SLIDER ═══ */
.lp-ad-slider {
    position: relative;
    width: 100%;
    background: var(--lp-navy);
    height: 360px;
}
.lp-ad-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.lp-ad-slide {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s ease;
    z-index: 1;
}
.lp-ad-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.lp-ad-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.lp-ad-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    transition: transform 6s ease;
}
.lp-ad-slide.is-active .lp-ad-slide-bg img {
    transform: scale(1.0);
}
.lp-ad-slide-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0F1B2D 0%, #1E3554 50%, #060D17 100%);
}
.lp-ad-slide-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(15,27,45,.92) 0%, rgba(15,27,45,.7) 40%, rgba(15,27,45,.25) 75%, rgba(15,27,45,0) 100%),
      linear-gradient(180deg, rgba(15,27,45,0) 60%, rgba(15,27,45,.55) 100%);
}
.lp-ad-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.lp-ad-slide-inner {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
    box-sizing: border-box;
    color: #fff;
}
.lp-ad-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
    background: var(--lp-orange);
}
.lp-ad-badge-service   { background: var(--lp-blue); }
.lp-ad-badge-product   { background: var(--lp-orange); }
.lp-ad-badge-concert   { background: var(--lp-green); }
.lp-ad-badge-ticket    { background: var(--lp-gold); color: var(--lp-navy); }
.lp-ad-badge-event     { background: var(--lp-teal); }
.lp-ad-badge-promotion { background: #8B5CF6; }
.lp-ad-title {
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 8px;
    color: #fff;
    max-width: 620px;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.lp-ad-sub {
    font-size: clamp(.95rem, 1.4vw, 1.1rem);
    font-weight: 700;
    color: var(--lp-orange);
    margin: 0 0 8px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.lp-ad-desc {
    font-size: .92rem;
    line-height: 1.55;
    color: rgba(255,255,255,.88);
    margin: 0 0 18px;
    max-width: 560px;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.lp-ad-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-orange);
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .3px;
    box-shadow: 0 6px 20px rgba(242,107,31,.35);
    transition: background .15s, transform .15s, box-shadow .15s;
}
.lp-ad-cta svg { width: 16px; height: 16px; }
.lp-ad-slide:hover .lp-ad-cta {
    background: var(--lp-orange-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(242,107,31,.5);
}

/* Slider controls */
.lp-ad-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .15s, transform .15s;
}
.lp-ad-nav:hover { background: var(--lp-orange); transform: translateY(-50%) scale(1.06); }
.lp-ad-nav svg { width: 20px; height: 20px; }
.lp-ad-prev { left: 18px; }
.lp-ad-next { right: 18px; }

.lp-ad-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.lp-ad-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    padding: 0;
    transition: background .15s, transform .15s, width .2s;
}
.lp-ad-dot:hover { background: rgba(255,255,255,.7); }
.lp-ad-dot.is-active {
    background: var(--lp-orange);
    width: 28px;
    border-radius: 999px;
}

/* ═══ HEADER ═══ */
.lp-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.lp-header .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 70px; gap: 24px;
}
.lp-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--brand-primary);
    flex-shrink: 0;
}
.lp-brand img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--lp-orange); }
.lp-brand-text {
    font-size: .8rem; font-weight: 600; color: var(--brand-primary);
    line-height: 1.1; letter-spacing: .3px;
}
.lp-brand-text b { color: var(--lp-orange); font-size: 1rem; font-weight: 800; }

.lp-nav { display: flex; align-items: center; gap: 22px; flex: 1; justify-content: center; }
.lp-nav a {
    color: var(--brand-primary);
    font-weight: 600; font-size: .85rem;
    text-decoration: none;
    transition: color .15s;
    white-space: nowrap;
}
.lp-nav a:hover { color: var(--lp-orange); }

.lp-btn-licensed {
    background: var(--lp-navy);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 700; font-size: .82rem;
    text-decoration: none;
    transition: background .15s, transform .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.lp-btn-licensed:hover { background: var(--lp-navy-2); transform: translateY(-1px); color: #fff; }

/* ═══ HERO ═══ */
.lp-hero {
    background: var(--lp-navy);
    color: #fff;
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute; left: -100px; top: 30px;
    width: 280px; height: 280px;
    border: 1.5px solid rgba(242,107,31,.4);
    border-radius: 50%;
    pointer-events: none;
}
.lp-hero::after {
    content: '';
    position: absolute; right: -80px; bottom: -100px;
    width: 220px; height: 220px;
    border: 1.5px solid rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}
.lp-hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 40px; align-items: center;
    position: relative; z-index: 2;
}
.lp-hero-eyebrow {
    color: var(--lp-orange);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.lp-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin: 0 0 20px;
    color: #fff;
}
.lp-hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 0 28px;
}
.lp-btn-orange {
    background: var(--lp-orange);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .3px;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 6px 20px rgba(242,107,31,.35);
}
.lp-btn-orange:hover {
    background: var(--lp-orange-2);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 28px rgba(242,107,31,.5);
}

/* Hero illustration collage */
.lp-hero-art {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}
.lp-collage {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}
.lp-collage-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--lp-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    background: var(--lp-navy-2);
    width: 180px;
    height: 180px;
}
.lp-collage-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-collage-1 { top: 10px;   left: 0;     }
.lp-collage-2 { top: 0;      right: 20px; border-color: #fff; }
.lp-collage-3 { bottom: 10px; left: 60px;  border-color: var(--lp-green); }
.lp-collage-4 { bottom: 0;   right: 50px; border-color: var(--lp-gold); }

/* Floating icons around the collage */
.lp-float-icon {
    position: absolute;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--lp-navy);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    z-index: 3;
}
.lp-float-icon svg { width: 22px; height: 22px; }
.lp-float-mic  { top: 20px;  left: 150px; background: var(--lp-orange); color: #fff; }
.lp-float-cal  { top: 60px;  right: 20px; background: #fff; }
.lp-float-pin  { bottom: 100px; right: 10px; background: var(--lp-blue); color: #fff; }
.lp-float-bars { bottom: 20px; left: 30px; background: var(--lp-green); color: #fff; }

.lp-float-arrow {
    position: absolute;
    top: 40px; left: 180px;
    color: var(--lp-green);
    z-index: 3;
    transform: rotate(-30deg);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.lp-float-arrow svg { width: 48px; height: 48px; }

.lp-vertical-text {
    position: absolute;
    right: -2px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    color: rgba(255,255,255,.15);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: 3px;
    white-space: nowrap;
    z-index: 1;
    text-transform: uppercase;
    line-height: 1.1;
    pointer-events: none;
}

/* ═══ 3 STAKEHOLDER CARDS BAND ═══ */
.lp-stake-band {
    background: #F4F5F7;
    padding: 40px 0 50px;
}
.lp-stake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.lp-stk-card {
    border-radius: 10px;
    padding: 32px 28px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
    overflow: hidden;
}
.lp-stk-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.14); }
.lp-stk-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.lp-stk-icon svg { width: 36px; height: 36px; }
.lp-stk-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: .3px;
}
.lp-stk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex: 1;
}
.lp-stk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: .9rem;
    font-weight: 500;
}
.lp-stk-list li svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.lp-stk-foot {
    margin: 0 -28px;
    padding: 12px 20px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .2px;
    text-align: center;
}

/* Navy card (Creators) */
.lp-stk-navy { background: var(--lp-navy); color: #fff; }
.lp-stk-navy .lp-stk-icon { background: rgba(242,107,31,.15); color: var(--lp-orange); }
.lp-stk-navy h3 { color: #fff; }
.lp-stk-navy .lp-stk-list li { color: rgba(255,255,255,.95); }
.lp-stk-navy .lp-stk-list li svg { stroke: var(--lp-orange); }
.lp-stk-navy .lp-stk-foot { background: var(--lp-navy-dark); color: #fff; }

/* Orange card (Businesses) */
.lp-stk-orange { background: var(--lp-orange); color: #fff; }
.lp-stk-orange .lp-stk-icon { background: rgba(255,255,255,.2); color: #fff; }
.lp-stk-orange h3 { color: #fff; }
.lp-stk-orange .lp-stk-list li { color: #fff; }
.lp-stk-orange .lp-stk-list li svg { stroke: #fff; }
.lp-stk-orange .lp-stk-foot { background: var(--lp-orange-2); color: #fff; }

/* White card (CMOs) */
.lp-stk-white { background: #fff; color: var(--lp-navy); }
.lp-stk-white .lp-stk-icon { background: var(--bg-soft, #F5F2EC); color: var(--lp-navy); }
.lp-stk-white h3 { color: var(--lp-navy); }
.lp-stk-white .lp-stk-list li { color: var(--lp-navy); }
.lp-stk-white .lp-stk-list li svg { stroke: var(--lp-orange); }
.lp-stk-white .lp-stk-foot { background: var(--lp-navy); color: #fff; }

/* ═══ GRADIENT BAND (creator + business marketplace) ═══ */
.lp-band {
    background: var(--lp-grad-band);
    color: #fff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}
.lp-band::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 320px; height: 320px;
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 50%;
    pointer-events: none;
}
.lp-band::after {
    content: '';
    position: absolute;
    right: 60px; top: 80px;
    width: 180px; height: 180px;
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 50%;
    pointer-events: none;
}
.lp-band-eyebrow {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.lp-band-title {
    color: #fff;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 10px;
    letter-spacing: -.01em;
}
.lp-band-sub {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    margin: 0 0 36px;
}

/* Product grid */
.lp-product-grid {
    display: grid;
    gap: 20px;
    position: relative; z-index: 2;
    width: 100%;
}
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid-4 { grid-template-columns: repeat(4, 1fr); }

.lp-product-card {
    background: #fff;
    color: var(--lp-navy);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    display: flex; flex-direction: column;
}
.lp-product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.25); }

.lp-product-img {
    aspect-ratio: 4/3;
    background: var(--bg-soft, #F5F2EC);
    overflow: hidden;
    position: relative;
}
.lp-product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-product-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--lp-orange-soft) 0%, #fff 100%);
}

.lp-product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.lp-product-row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
    margin-bottom: 4px;
}
.lp-product-body h4 {
    font-size: .95rem; font-weight: 800; color: var(--lp-navy);
    margin: 0; line-height: 1.25;
}
.lp-product-price {
    color: var(--lp-orange);
    font-weight: 800;
    font-size: .95rem;
    flex-shrink: 0;
}
.lp-product-license {
    color: var(--text-mute, #8B8E96);
    font-size: .8rem;
    margin-bottom: 10px;
}
.lp-product-seller {
    display: flex; align-items: center; gap: 8px;
    font-size: .82rem;
    color: var(--text-soft, #4B5A75);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #E8E4DC;
}
.lp-product-avatar {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--lp-gold);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: .62rem; font-weight: 800;
    flex-shrink: 0;
}

/* Business card (e-commerce) variant */
.lp-product-card--biz .lp-product-body h4 { font-size: 1rem; }
.lp-product-meta-row {
    color: var(--lp-navy);
    font-size: .82rem; font-weight: 700;
    margin-bottom: 6px;
}
.lp-product-from { color: var(--lp-navy); font-weight: 700; }
.lp-product-desc {
    color: var(--text-soft, #4B5A75);
    font-size: .8rem;
    line-height: 1.45;
    margin: 0 0 12px;
    flex: 1;
}
.lp-btn-orange-sm {
    background: var(--lp-orange);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .82rem;
    text-decoration: none;
    display: inline-block;
    transition: background .15s;
    text-align: center;
    align-self: flex-start;
}
.lp-btn-orange-sm:hover { background: var(--lp-orange-2); color: #fff; }

/* ═══ PLATFORM MODULES (white) ═══ */
.lp-modules {
    background: #fff;
    padding: 60px 0 70px;
    text-align: center;
}
.lp-modules-title {
    color: var(--lp-navy);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: .3px;
    margin: 0 0 10px;
    text-align: center;
}
.lp-modules-sub {
    color: var(--text-soft, #4B5A75);
    font-size: .95rem;
    margin: 0 0 40px;
    text-align: center;
}

/* Category tiles (4 coloured) */
.lp-cat-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
    width: 100%;
}
.lp-cat-tile {
    border-radius: 10px;
    padding: 24px 16px;
    color: #fff !important;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    min-height: 90px;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.lp-cat-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.18); color: #fff; }
.lp-cat-orange { background: var(--lp-orange); }
.lp-cat-green  { background: var(--lp-green); }
.lp-cat-teal   { background: var(--lp-teal); }
.lp-cat-gold   { background: var(--lp-gold); }

/* Features grid */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
    width: 100%;
}
.lp-feature { display: flex; flex-direction: column; gap: 10px; }
.lp-feature-icon {
    width: 48px; height: 48px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.lp-feature-icon svg { width: 26px; height: 26px; }
.lp-ic-blue   { background: var(--lp-blue); }
.lp-ic-orange { background: var(--lp-orange); }
.lp-ic-teal   { background: var(--lp-teal); }
.lp-ic-gold   { background: var(--lp-gold); }

.lp-feature h4 {
    color: var(--lp-navy);
    font-size: .92rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}
.lp-feature p {
    color: var(--text-soft, #4B5A75);
    font-size: .82rem;
    line-height: 1.5;
    margin: 0;
}

/* ═══ FOOTER CTA + 4-COLUMN FOOTER ═══ */

/* CTA section above the footer */
.lp-footer-cta {
    background: #1a1f3a;
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-footer-cta-glow {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(217,158,71,.18) 0%, transparent 70%);
    pointer-events: none;
}
.lp-footer-cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    position: relative; z-index: 2;
}
.lp-footer-cta p {
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 28px;
    position: relative; z-index: 2;
}
.lp-footer-cta-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 2;
}
.lp-btn-gold {
    background: #C5A256;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 200px;
}
.lp-btn-gold:hover { background: #D89E47; transform: translateY(-2px); color: #fff; }
.lp-btn-ghost {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background .15s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 200px;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); color: #fff; }

/* Main footer */
.lp-footer {
    background: #14182b;
    color: rgba(255,255,255,.7);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    width: 100%;
}
.lp-footer-col--brand { padding-right: 20px; }
.lp-footer-logo {
    width: 48px; height: 48px;
    margin-bottom: 20px;
}
.lp-footer-logo svg { width: 100%; height: 100%; display: block; }
.lp-footer-col p {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0;
    max-width: 320px;
}
.lp-footer-col h4 {
    color: #fff;
    font-size: .95rem;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: .2px;
}
.lp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-col ul li {
    margin-bottom: 10px;
}
.lp-footer-col ul li a {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    text-decoration: none;
    transition: color .15s;
}
.lp-footer-col ul li a:hover { color: #C5A256; }

.lp-footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.lp-footer-copy { font-size: .8rem; color: rgba(255,255,255,.6); }
.lp-footer-powered { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .lp-nav { gap: 14px; }
    .lp-nav a { font-size: .8rem; }
    .lp-ad-slider { height: 320px; }
    .lp-ad-slide-inner { padding: 32px 40px; }
}
@media (max-width: 980px) {
    .lp-header .container { gap: 12px; }
    .lp-nav { display: none; }
    .lp-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .lp-hero-art { height: 360px; max-width: 480px; margin: 0 auto; }
    .lp-vertical-text { display: none; }
    .lp-stake-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-grid-3, .lp-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .lp-cat-tiles, .lp-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .lp-footer-col--brand { grid-column: 1 / -1; }
    .lp-ad-slider { height: 300px; }
    .lp-ad-slide-inner { padding: 28px 40px; }
    .lp-ad-desc { display: none; }
}
@media (max-width: 640px) {
    .landing .container,
    .lp-topbar .container,
    .lp-header .container,
    .lp-hero .container,
    .lp-stake-band .container,
    .lp-band .container,
    .lp-modules .container,
    .lp-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .lp-brand-text { display: none; }
    .lp-grid-3, .lp-grid-4 { grid-template-columns: 1fr; }
    .lp-cat-tiles, .lp-feature-grid { grid-template-columns: 1fr; }
    .lp-partners { justify-content: center; }
    .lp-footer-bottom { flex-direction: column; text-align: center; }
    .lp-hero { padding: 40px 0 30px; }

    /* Topbar on small screens */
    .lp-topbar .container { height: auto; flex-direction: column; padding-top: 6px; padding-bottom: 6px; gap: 6px; }
    .lp-topbar-nav a { line-height: 28px; padding: 0 10px; font-size: .78rem; }
    .lp-topbar-sep { display: none; }
    .lp-topbar-right { gap: 12px; }
    .lp-topbar-phone span { font-size: .78rem; }

    /* Ad slider on small screens */
    .lp-ad-slider { height: 240px; }
    .lp-ad-slide-inner { padding: 20px; }
    .lp-ad-title { font-size: 1.25rem; }
    .lp-ad-sub { font-size: .85rem; }
    .lp-ad-cta { padding: 9px 16px; font-size: .8rem; }
    .lp-ad-nav { width: 36px; height: 36px; }
    .lp-ad-prev { left: 8px; }
    .lp-ad-next { right: 8px; }
}
@media (max-width: 980px) and (min-width: 641px) {
    .landing .container,
    .lp-topbar .container,
    .lp-header .container,
    .lp-hero .container,
    .lp-stake-band .container,
    .lp-band .container,
    .lp-modules .container,
    .lp-footer .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}
