/* ============================================================
   Shared Landing Page Styles
   Used by /milestones, /corporate (and any future page using
   the lp.html layout). Per-page differs only in copy, hero/why
   /card images, and an optional body class.
   ============================================================ */

:root {
    --lp-gold: #ffca6a;
    --lp-gold-soft: #fff6e4;
    --lp-coral: #c96b51;
    --lp-cream: #ffdbab;
    --lp-text-dark: #1a1a1a;
    --lp-radius: 10px;
    --lp-grad-gold: linear-gradient(133deg, #c96b51 11.585%, #ffca6a 30.793%, #ffdbab 50%, #ffca6a 69.207%, #ffdbab 88.415%);
    --lp-grad-gold-vert: linear-gradient(169deg, #c96b51 11.585%, #ffca6a 30.793%, #ffdbab 50%, #ffca6a 69.207%, #ffdbab 88.415%);
}

.lp-page {
    margin: 0;
    background: #fff;
    color: var(--lp-text-dark);
    font-family: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.lp-page * { box-sizing: border-box; }
.lp-page img { max-width: 100%; display: block; }
.lp-page a { text-decoration: none; color: inherit; }

.lp-page h1,
.lp-page h2,
.lp-page h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1.05;
}

.lp-page p { margin: 0; line-height: 1.4; }

.lp-script {
    margin: 0;
    font-family: 'Mr Dafoe', cursive;
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

.lp-gold-grad {
    background-image: var(--lp-grad-gold-vert);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------------- Buttons ---------------- */
.lp-btn,
.lp-btn:link,
.lp-btn:visited,
.lp-btn span {
    color: #000;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    background: var(--lp-gold);
    border-radius: var(--lp-radius);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    border: none;
}
.lp-btn:hover {
    background: #ffd987;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}
.lp-btn img { width: 10px; height: 10px; }

.lp-btn--dark,
.lp-btn--dark:link,
.lp-btn--dark:visited,
.lp-btn--dark span {
    color: #fff;
}
.lp-btn--dark {
    background: #000;
}
.lp-btn--dark:hover {
    background: #1a1a1a;
}

.lp-btn--outline,
.lp-btn--outline:link,
.lp-btn--outline:visited,
.lp-btn--outline span {
    color: #000;
}
.lp-btn--outline {
    background: transparent;
    border: 1px solid #000;
    box-shadow: none;
}
.lp-btn--outline:hover {
    background: rgba(0, 0, 0, .05);
    box-shadow: none;
}

/* ---------------- Nav ---------------- */
.lp-nav { background: #fff; }
.lp-nav__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 18px 24px;
}
.lp-nav__logos {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.lp-nav__logo--mdg { height: 36px; width: auto; }
.lp-nav__logo--pixbash { height: 75px; width: auto; }
.lp-nav__with {
    font-size: 12px;
    font-weight: 600;
    color: #000;
}
.lp-nav__signup {
    background: var(--lp-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 16px;
    flex-wrap: wrap;
}

/* ---------------- Demo strip ---------------- */
.lp-demo-strip { background: var(--lp-gold); text-align: center; }
.lp-demo-strip__link {
    display: block;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}
.lp-demo-strip__link strong { font-weight: 900; }

/* ---------------- Hero ---------------- */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 60px 24px 75px;
    text-align: center;
    color: #fff;
}
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-hero__bg-tint { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.lp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.lp-hero__title {
    font-size: clamp(44px, 12vw, 84px);
    line-height: 1;
    background-image: var(--lp-grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.01em;
}
.lp-hero__copy {
    font-size: 15px;
    font-weight: 600;
    max-width: 540px;
    margin: 0 auto;
}

/* ---------------- Why love ---------------- */
.lp-why {
    position: relative;
    overflow: hidden;
    padding: 50px 24px 60px;
}
.lp-why__bg { position: absolute; inset: 0; z-index: 0; }
.lp-why__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-why__bg-tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.64) 0%, rgba(0,0,0,0) 100%),
        rgba(0, 0, 0, .6);
}
.lp-why__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-why__heart { width: 150px; height: auto; margin-bottom: 8px; }
.lp-why__title { text-align: center; color: #fff; margin-bottom: 28px; }
.lp-why__title h2 {
    font-size: 32px;
    line-height: 1;
    color: #fff;
    margin-top: 4px;
}

.lp-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.lp-card {
    position: relative;
    border: 20px solid transparent;
    border-radius: var(--lp-radius);
    background: var(--lp-grad-gold) border-box;
    overflow: hidden;
    padding: 24px 18px 30px;
    color: #fff;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.lp-card__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.lp-card__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lp-card__bg-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, #000 100%);
}
.lp-card__media {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
.lp-card__media img {
    max-width: 100%;
    max-height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(4px 4px 10px rgba(0,0,0,.25));
}
.lp-card__media--icon img { max-height: 90px; filter: none; }

/* Variant: image right-aligned, extends into and past the gradient border */
.lp-card--right-image { overflow: visible; }
.lp-card--right-image .lp-card__media {
    align-self: flex-end;
    width: auto;
    max-width: none;
    padding: 0;
    margin-right: -38px;
}
.lp-card--right-image .lp-card__media img {
    max-width: none;
    width: auto;
    max-height: 200px;
    height: 180px;
}

.lp-card__text {
    position: relative;
    z-index: 1;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-card__text h3 { font-size: 28px; font-weight: 900; line-height: 1.05; }
.lp-card__text p { font-size: 15px; font-weight: 600; line-height: 1.35; }

/* ---------------- CTA (gold bg + black button) ---------------- */
.lp-cta {
    background: var(--lp-gold);
    padding: 50px 24px;
    text-align: center;
    color: #000;
}
.lp-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
}
.lp-cta .lp-script { color: #000; }
.lp-cta__title { font-size: clamp(32px, 6vw, 52px); color: #000; }

/* ---------------- Footer ---------------- */
.lp-foot { background: #fff; }
.lp-foot__seen {
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    font-size: 15px;
    font-weight: 600;
}
.lp-foot__seen img { height: 22px; width: auto; }

.lp-foot__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
}
.lp-foot__logo--mdg { height: 36px; width: auto; }
.lp-foot__logo--pixbash { height: 75px; width: auto; }
.lp-foot__with { font-size: 12px; font-weight: 600; color: #000; }

.lp-foot__divider {
    border: 0;
    border-top: 1px solid #d9d9d9;
    margin: 0;
}

.lp-foot__facebook {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.lp-foot__facebook:hover { text-decoration: underline; }
.lp-foot__facebook img { width: 24px; height: 24px; }

.lp-foot__signup {
    background: var(--lp-gold-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    flex-wrap: wrap;
}

.lp-foot__contact {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
}
.lp-foot__email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}
.lp-foot__email img { width: 14px; height: auto; }

.lp-foot__powered { height: 20px; width: auto; margin-top: 4px; opacity: .9; }
.lp-foot__powered-link { display: inline-flex; }

/* ============================================================
   Tablet (≥640px)
   ============================================================ */
@media (min-width: 640px) {
    .lp-script { font-size: 38px; }

    .lp-nav__top { padding: 22px 36px; }
    .lp-nav__signup { padding: 22px 24px; }

    .lp-demo-strip__link { font-size: 14px; padding: 16px; }

    .lp-hero { padding: 100px 40px 110px; }
    .lp-hero__copy { font-size: 16px; }

    .lp-why { padding: 80px 40px; }
    .lp-why__title h2 { font-size: 44px; }
    .lp-why__heart { width: 180px; }

    .lp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .lp-card { min-height: 420px; }

    .lp-cta { padding: 80px 40px; }

    .lp-foot__contact { padding: 26px 24px; }
}

/* ============================================================
   Desktop (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
    .lp-script { font-size: 48px; }

    .lp-nav__top { padding: 24px 56px; }
    .lp-nav__logo--mdg { height: 46px; }

    .lp-demo-strip__link { font-size: 15px; padding: 18px; }

    .lp-hero { padding: 140px 56px 160px; }
    .lp-hero__inner { gap: 24px; }
    .lp-hero__copy { font-size: 18px; max-width: 620px; }

    .lp-why { padding: 110px 56px; }
    .lp-why__title { margin-bottom: 50px; }
    .lp-why__title h2 { font-size: 56px; }
    .lp-why__heart { width: 210px; }

    .lp-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .lp-card { min-height: 460px; padding: 32px 22px 38px; }
    .lp-card__text h3 { font-size: 30px; }
    .lp-card--right-image .lp-card__media { margin-right: -42px; }

    .lp-cta { padding: 110px 56px; }
    .lp-cta__title { font-size: 56px; }

    .lp-foot__seen { padding: 24px 16px; font-size: 16px; }
    .lp-foot__seen img { height: 26px; }
    .lp-foot__logos { padding: 22px 24px; }
    .lp-foot__logo--mdg { height: 46px; }
    .lp-foot__powered { height: 22px; }
    .lp-foot__contact { padding: 30px 24px; }
}

/* ============================================================
   Wide desktop (≥1440px)
   ============================================================ */
@media (min-width: 1440px) {
    .lp-hero { padding: 170px 80px 190px; }
    .lp-why { padding: 130px 80px; }
    .lp-cta { padding: 130px 80px; }
}
