body {
        margin: 0; padding: 0;
        font-family: 'Satoshi', sans-serif;
        box-sizing: border-box;
        scroll-behavior: smooth;
    }
    * { box-sizing: inherit; }

    .lp_nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 4%;
        background: rgba(42,45,49,0.95);
		backdrop-filter:blur(4px);
        position: sticky;
        top: 0;
        z-index: 10;
    }
	.lp_nav img {filter: brightness(0) invert(1);}
    .lp_nav_logo {
        max-width: 110px;
        height: auto;
    }
    .lp_nav_links {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .lp_nav_links a.login_link {
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
    }
    .lp_btn_primary {
        background-image: linear-gradient(to right, #f06da8, #e55c9f, #d94b95, #ce388d, #c22184);
        color: #fff;
        font-weight: 700;
        padding: 14px 32px;
        border-radius: 4px;
        border: none;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        cursor: pointer;
    }
    .lp_nav_links .lp_btn_primary {
        background-image: linear-gradient(to right, #f06da8, #e55c9f, #d94b95, #ce388d, #c22184);
        color: #ffffff;
        padding: 10px 20px;
    }

    .lp_hero {
        background: var(--main-olive);
        min-height: 88vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .lp_hero_inner {
        max-width: 860px;
        padding: 0 4%;
        width: 100%;
    }
    .lp_hero h1 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 900;
        color: #ffffff;
        line-height: 1.1;
        margin: 0 0 20px 0;
    }
    .lp_hero p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.75);
        max-width: 560px;
        line-height: 1.6;
        margin: 0 0 40px 0;
    }
    .lp_hero_ctas {
        display: flex;
        gap: 15px;
    }
    .lp_btn_outline {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255,255,255,0.5);
        padding: 14px 32px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        display: inline-block;
        text-align: center;
    }

    .lp_stat_strip {
        background: #ffffff;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 40px 4%;
    }
    .lp_stat_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        flex: 1;
    }
    .lp_stat_item .material-symbols-outlined {
        font-size: 40px;
        color: var(--main-olive);
    }
    .lp_stat_item span.caption {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--dark-olive);
        font-weight: 700;
    }

    .lp_section {
        padding: 6% 4%;
        max-width: 1100px;
        margin: 0 auto;
    }
    .lp_features {
        background: #ffffff;
    }
    .lp_eyebrow {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--dark-olive);
        font-weight: 700;
        display: block;
        margin-bottom: 15px;
		text-align: center;
    }
    .lp_section_hd {
        font-size: 2rem;
        font-weight: 900;
        color: #1a1a1a;
        margin: 0 0 40px 0;
		text-align: center;
    }
    .lp_features_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2%;
        row-gap: 20px;
    }
    .lp_feature_card {
        border: 1px solid var(--border-green);
        border-radius: 8px;
        padding: 6% 5%;
    }
    .lp_feature_icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--light-olive);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5%;
    }
    .lp_feature_icon .material-symbols-outlined {
        color: var(--main-olive);
        font-size: 24px;
    }
    .lp_feature_card h3 {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 2% 0;
    }
    .lp_feature_card p {
        font-size: 13px;
        line-height: 22px;
        color: #696969;
        margin: 0;
    }

    .lp_steps_wrap {
        background: var(--light-olive);
    }
    .lp_steps {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 40px;
    }
    .lp_step {
        width: 23%;
        text-align: center;
        position: relative;
    }
    .lp_step_num {
        font-size: 3rem;
        font-weight: 900;
        color: var(--border-green);
        line-height: 1;
        margin: 0;
    }
    .lp_step h4 {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 3% 0 2%;
    }
    .lp_step p {
        font-size: 13px;
        color: #696969;
        line-height: 21px;
        margin: 0;
    }
    .lp_step_sep {
        width: 1px;
        height: 80px;
        background: var(--border-green);
        margin-top: 20px;
    }

    .lp_usecases_wrap {
        background: #ffffff;
    }
    .lp_usecases_row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }
    .lp_usecase_tile {
        border: 1px solid var(--border-green);
        border-radius: 55px;
        padding: 8px 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 700;
        color: var(--dark-olive);
    }
    .lp_usecase_tile .material-symbols-outlined {
        font-size: 18px;
    }

    .lp_pricing_wrap {
        background: var(--main-olive);
        text-align: center;
    }
    .lp_pricing_wrap .lp_eyebrow {
        color: rgba(255,255,255,0.6);
    }
    .lp_pricing_wrap .lp_section_hd {
        color: #ffffff;
    }
    .lp_pricing_card {
        background: #ffffff;
        border-radius: 12px;
        max-width: 420px;
        margin: 4% auto;
        padding: 6% 6%;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        text-align: left;
    }
    .lp_pricing_price {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--main-olive);
        line-height: 1;
        margin: 0;
        text-align: center;
    }
    .lp_pricing_card .per_unit {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--dark-olive);
        display: block;
        text-align: center;
        margin-top: 10px;
    }
    .lp_pricing_card hr {
        border: none;
        border-top: 1px solid var(--border-green);
        margin: 5% 0;
    }
    .lp_feature_list {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    .lp_feature_list li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 3%;
        font-size: 14px;
        color: #333;
    }
    .lp_pricing_card .lp_btn_primary {
        background: var(--main-olive);
        color: #ffffff;
        width: 100%;
    }

    .lp_footer {
        background: #1a1a1a;
        padding: 4% 4% 3%;
        color: #ffffff;
    }
    .lp_footer_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .lp_footer_top img {
        max-width: 120px;
        height: auto;
		filter: brightness(1.8);
    }
    .lp_footer_top a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
    }
    .lp_footer_bottom {
        border-top: 1px solid #333;
        margin-top: 3%;
        padding-top: 2%;
        font-size: 12px;
        color: #888;
        display: flex;
        justify-content: space-between;
    }

    @media only screen and (max-device-width: 512px) {
        .lp_nav {
            flex-direction: column;
            gap: 15px;
            padding: 17px 5%;
        }
        .lp_nav_links {
            width: 100%;
            justify-content: center;
        }

        
        .lp_hero {
            min-height: auto;
            padding: 20% 5% 12%;
            text-align: center;
            justify-content: center;
        }
        .lp_hero p {
            margin: 0 auto 30px;
        }
        .lp_hero_ctas {
            flex-direction: column;
            width: 100%;
        }
        .lp_hero_ctas a {
            width: 100%;
        }

        .lp_stat_strip {
            flex-direction: row;
            gap: 30px;
            padding: 40px 5%;
        }

        .lp_features_grid {
            grid-template-columns: 1fr;
        }

        .lp_steps {
            flex-direction: column;
            gap: 30px;
        }
        .lp_step {
            width: 100%;
        }
        .lp_step_sep {
            display: none;
        }

        .lp_usecases_row {
            justify-content: center;
        }

        .lp_pricing_card {
            padding: 10% 6%;
            margin: 8% auto;
        }

        .lp_footer_bottom {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
        .lp_footer_top {
            flex-direction: column;
            gap: 20px;
        }
    }
/* ── 3-tier pricing grid ─────────────────────────────────────────────────── */

.lp_pricing_cards {
  display: flex;
  align-items: center;      /* vertically centres the 3 cards */
  gap: 1.5%;
  width: 100%;
  max-width: 960px;
  margin: 5% auto 0;
}

/* ── Base card reset (overrides the old single-card styles) ─────────────── */
.lp_pricing_card {
  flex: 1;
  border-radius: 12px;
  padding: 5% 6%;
  display: flex;
  flex-direction: column;
  box-shadow: none;       /* reset; each variant sets its own */
}

/* ── Ghost cards (outer two) — translucent on the dark section bg ────────── */
.lp_card_ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.lp_card_ghost .lp_plan_name  { color: rgba(255,255,255,0.55); }
.lp_card_ghost .lp_pricing_price,
.lp_card_ghost .lp_price_unit { color: #ffffff; }
.lp_card_ghost .lp_price_meta { color: rgba(255,255,255,0.5); }
.lp_card_ghost .lp_card_divider { border-color: rgba(255,255,255,0.12); }
.lp_card_ghost .lp_feature_list li { color: rgba(255,255,255,0.8); }
.lp_card_ghost .lp_feature_list .material-symbols-outlined { color: rgba(255,255,255,0.55); }

/* ── Highlighted middle card ─────────────────────────────────────────────── */
.lp_card_highlight {
  background: #ffffff;
  border: none;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
  position: relative;
  padding: 9% 6%;          /* extra top/bottom padding makes it taller */
  z-index: 1;
}

.lp_card_highlight .lp_plan_name    { color: var(--muted-olive); }
.lp_card_highlight .lp_pricing_price,
.lp_card_highlight .lp_price_unit   { color: var(--main-olive); }
.lp_card_highlight .lp_price_meta   { color: var(--muted-olive); }
.lp_card_highlight .lp_card_divider { border-color: var(--border-green); }
.lp_card_highlight .lp_feature_list li { color: #1a1a1a; }
.lp_card_highlight .lp_feature_list .material-symbols-outlined { color: var(--mid-green); }

/* ── "Most popular" badge ────────────────────────────────────────────────── */
.lp_recommended_badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, #f06da8, #e55c9f, #d94b95, #ce388d, #c22184);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Plan name ───────────────────────────────────────────────────────────── */
.lp_plan_name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 4%;
}

/* ── Price typography ────────────────────────────────────────────────────── */
.lp_pricing_price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2%;
}
.lp_price_unit {
  font-size: 1.4rem;
  font-weight: 700;
}
.lp_price_meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.lp_card_divider {
  border: none;
  border-top: 1px solid;
  margin: 6% 0;
}

/* ── Feature list (inside cards) ─────────────────────────────────────────── */
.lp_feature_list {
  list-style: none;
  padding: 0;
  margin: 0 0 8%;
  flex: 1;          /* pushes CTA button to the bottom of the card */
}
.lp_feature_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4%;
}
.lp_feature_list .material-symbols-outlined { font-size: 17px; flex-shrink: 0; }

/* ── Premium-only feature highlight row ─────────────────────────────────── */
.lp_feature_extra {
  font-weight: 700;
  color: rgba(255,255,255,0.95) !important;
  margin-top: 2%;
}
.lp_feature_extra .material-symbols-outlined {
  color: #f0c95e !important;    /* warm gold to signal the exclusive add-on */
}

/* ── CTA buttons inside cards ────────────────────────────────────────────── */
.lp_btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
  margin-top: auto;
}
.lp_btn:hover { opacity: 0.82; }

.lp_btn_primary_dark {
  background: var(--main-olive);
  color: #ffffff;
  border: none;
}
.lp_btn_ghost_cta {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ── Mobile: stack vertically ────────────────────────────────────────────── */
@media only screen and (max-device-width: 512px) {
  .lp_pricing_cards {
    flex-direction: column;
    gap: 16px;
    margin-top: 8%;
  }
  .lp_pricing_card,
  .lp_card_highlight {
    width: 100%;
    padding: 8% 6%;
  }
  .lp_card_highlight { box-shadow: 0 8px 28px rgba(0,0,0,0.22); }
  .lp_pricing_price  { font-size: 2.4rem; }
}