/*
 * Landing page
 * -----------------------------------------------------------------------------
 * Indigo hero and CTA bands with curved edges, light-lavender feature sections,
 * and a white platform grid. Fluid from 320px up.
 */

:root {
    --lp-indigo: #5b61ea;
    --lp-indigo-2: #6a6ff0;
    --lp-indigo-deep: #4f55e0;
    --lp-navy: #16224e;
    --lp-navy-hover: #0e1838;
    --lp-blue: #4f5df5;

    --lp-ink: #0b1a3f;
    --lp-body: #5b6785;
    --lp-muted: #8b96ad;

    --lp-lavender: #ebeefe;
    --lp-card: #eef1fe;
    --lp-line: #e4e8f5;
    --lp-white: #ffffff;

    --lp-radius: 16px;
    --lp-shell: 1200px;
    --lp-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ------------------------------------------------------------------- base */

/* Keep percentage-width elements inside the viewport when they have padding. */
html {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html { overflow-x: hidden; }

body.body {
    margin: 0;
    max-width: 100vw;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    font-family: var(--lp-font);
    color: var(--lp-body);
    background: var(--lp-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.body h1,
body.body h2,
body.body h3,
body.body h4 {
    margin: 0;
    color: var(--lp-ink);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.18;
}

body.body a { text-decoration: none; }
body.body p { margin: 0; }
body.body img { max-width: 100%; height: auto; }

.lp-shell {
    width: 100%;
    max-width: var(--lp-shell);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 28px);
}

._relative { position: relative; }
.sp { padding: clamp(56px, 8vw, 104px) 0; }
.space16 { height: 16px; }
.space30 { height: 30px; }
.space40 { height: 40px; }
.space50 { height: 50px; }
.space60 { height: 60px; }

/* Section eyebrow: “—— Premium Numbers” */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-blue);
    font-size: clamp(.85rem, 1.6vw, .95rem);
    font-weight: 600;
    margin-bottom: 14px;
}

.lp-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.lp-section-title { font-size: clamp(1.55rem, 4vw, 2.4rem); }

.lp-section-head { max-width: 640px; }
.lp-section-head--center {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-section-head p {
    margin-top: 16px;
    font-size: clamp(.95rem, 1.8vw, 1rem);
    max-width: 62ch;
    text-wrap: pretty;
}

/* The eyebrow is inline-flex, so centring happens on the element itself. */
.lp-section-head--center .lp-eyebrow,
.lp-section-head--center .lp-btn { align-self: center; }

/* ---------------------------------------------------------------- buttons */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: clamp(.9rem, 1.6vw, .95rem);
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.lp-btn:hover { transform: translateY(-2px); }

.lp-btn--navy { background: var(--lp-navy); color: #fff; }
.lp-btn--navy:hover { background: var(--lp-navy-hover); color: #fff; }

.lp-btn--ghost {
    background: var(--lp-indigo-deep);
    color: #fff;
    border-color: #fff;
}

.lp-btn--ghost:hover { background: #fff; color: var(--lp-indigo-deep); border-color: #fff; }

.lp-btn--white { background: #fff; color: var(--lp-navy); }
.lp-btn--white:hover { background: #fff; color: var(--lp-indigo); }

.lp-btn--indigo { background: var(--lp-indigo); color: #fff; box-shadow: 0 10px 22px rgba(91, 97, 234, .28); }
.lp-btn--indigo:hover { background: var(--lp-indigo-deep); color: #fff; }

.lp-btn__play {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ----------------------------------------------------------- indigo bands */

/* The hero and CTA share the indigo treatment and the curved lower edge. */
.lp-band {
    position: relative;
    background: linear-gradient(135deg, var(--lp-indigo) 0%, var(--lp-indigo-2) 55%, var(--lp-indigo) 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

/* Soft concentric rings, echoing the reference artwork */
.lp-band::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 12%;
    width: min(1180px, 96vw);
    aspect-ratio: 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .09) 0 38%,
            rgba(255, 255, 255, 0) 39%),
        radial-gradient(circle,
            rgba(255, 255, 255, .07) 0 62%,
            rgba(255, 255, 255, 0) 63%);
    z-index: -1;
    pointer-events: none;
}

.lp-band--hero { padding-bottom: clamp(90px, 14vw, 190px); }
.lp-band--cta { padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 11vw, 140px); }
.lp-band--cta .lp-section-title { max-width: 22ch; margin-inline: auto; }

/* Curved white edge below each indigo band */
.lp-band__curve {
    position: absolute;
    left: -4vw;
    right: -4vw;
    bottom: -1px;
    width: auto;
    height: clamp(48px, 7vw, 110px);
    background: var(--lp-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    pointer-events: none;
}

.lp-band--cta .lp-band__curve { background: var(--lp-white); }

body.body .lp-band h1,
body.body .lp-band h2,
body.body .lp-band h3,
body.body .lp-band h4 { color: #fff; }

.lp-band p { color: rgba(255, 255, 255, .85); }

/* Floating social chips scattered over the bands */
.lp-floaters {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.lp-floaters span {
    position: absolute;
    width: clamp(32px, 3.6vw, 46px);
    height: clamp(32px, 3.6vw, 46px);
    border-radius: 50%;
    background: var(--chip, rgba(255, 255, 255, .18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(15px, 1.9vw, 21px);
    color: #fff;
    box-shadow: 0 6px 18px rgba(11, 26, 63, .18), 0 0 0 6px rgba(255, 255, 255, .07);
    animation: lpFloat 7s ease-in-out infinite;
}

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-11px); }
}

@media (prefers-reduced-motion: reduce) {
    .lp-floaters span { animation: none; }
}

.lp-floaters span:nth-child(1) { left: 2%;   top: 30%; animation-delay: 0s; }
.lp-floaters span:nth-child(2) { left: 8%;   top: 14%; animation-delay: .7s; }
.lp-floaters span:nth-child(3) { left: 4%;   top: 52%; animation-delay: 1.4s; }
.lp-floaters span:nth-child(4) { left: 10%;  top: 70%; animation-delay: 2.1s; }
.lp-floaters span:nth-child(5) { right: 2%;  top: 26%; animation-delay: .35s; }
.lp-floaters span:nth-child(6) { right: 8%;  top: 12%; animation-delay: 1.05s; }
.lp-floaters span:nth-child(7) { right: 4%;  top: 50%; animation-delay: 1.75s; }
.lp-floaters span:nth-child(8) { right: 10%; top: 68%; animation-delay: 2.45s; }

/* Once the copy fills the width there is no margin left for chips to sit in. */
@media (max-width: 1200px) {
    .lp-floaters span:nth-child(2),
    .lp-floaters span:nth-child(6) { display: none; }
}

@media (max-width: 900px) {
    .lp-floaters { display: none; }
}

/* ----------------------------------------------------------------- header */

.lp-header {
    position: relative;
    z-index: 20;
    padding: 18px 0 0;
}

/* Floating pill bar */
.lp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.lp-nav__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.lp-nav__logo img { max-height: 40px; width: auto; }

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav__links a {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .94);
    font-size: 1rem;
    font-weight: 500;
    transition: background .18s ease, color .18s ease;
}

.lp-nav__links a:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.lp-nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lp-nav__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: background .18s ease;
}

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

.lp-nav .lp-btn { padding: 13px 28px; }

/* Mobile menu */
.lp-nav__burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .26);
    color: #fff;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 991px) {
    .lp-nav { padding: 10px 12px; }
    .lp-nav__links { display: none; }
    .lp-nav__burger { display: inline-flex; }
    .lp-nav__actions .lp-nav__icon { display: none; }
}

@media (max-width: 575px) {
    .lp-nav__actions .lp-btn { display: none; }
}

.lp-mobile-menu {
    display: none;
    margin-top: 10px;
    padding: 14px;
    border-radius: var(--lp-radius);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.lp-mobile-menu.open { display: block; }

.lp-mobile-menu ul { list-style: none; margin: 0 0 12px; padding: 0; }

.lp-mobile-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
}

.lp-mobile-menu a:hover { background: rgba(255, 255, 255, .16); }
.lp-mobile-menu .lp-btn { width: 100%; }

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

.lp-hero { padding: clamp(44px, 6vw, 76px) 0 0; text-align: center; }

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: clamp(.78rem, 1.5vw, .86rem);
    font-weight: 500;
    margin-bottom: 22px;
}

.lp-hero h1 {
    font-size: clamp(2rem, 5.6vw, 3.65rem);
    width: 100%;
    max-width: 20ch;
    margin: 0 auto 22px;
    text-align: center;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.lp-hero__lead {
    width: 100%;
    max-width: 60ch;
    text-wrap: pretty;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(.95rem, 1.9vw, 1.02rem);
    overflow-wrap: anywhere;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

/* Hero collage
   --------------------------------------------------------------------------
   The figure sits in normal flow and therefore *defines* the collage height —
   so it can never grow up over the headline. The dashboard panel is anchored
   behind it, and the three screenshots pin to the edges. */

.lp-collage {
    position: relative;
    max-width: 1080px;
    margin: clamp(44px, 6vw, 76px) auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: clamp(300px, 34vw, 470px);
}

/* Backdrop panel — stands in for the dashboard screenshot */
.lp-collage__panel {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(760px, 74%);
    background: #fff;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -10px 60px rgba(11, 26, 63, .22);
    overflow: hidden;
    text-align: left;
}

.lp-collage__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--lp-line);
}

.lp-collage__bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-line); }

.lp-collage__bar strong {
    margin-left: 6px;
    font-size: .8rem;
    color: var(--lp-ink);
    font-weight: 600;
}

.lp-collage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 16px 8px;
}

.lp-collage__stat { background: var(--lp-card); border-radius: 10px; padding: 12px 13px; }
.lp-collage__stat span { display: block; font-size: .68rem; color: var(--lp-body); margin-bottom: 3px; }
.lp-collage__stat strong { font-size: 1rem; color: var(--lp-ink); font-weight: 700; }

.lp-collage__chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: clamp(56px, 7vw, 92px);
    padding: 0 16px 16px;
}

.lp-collage__chart i {
    flex: 1;
    background: linear-gradient(180deg, var(--lp-indigo) 0%, #b3b7fa 100%);
    border-radius: 4px 4px 0 0;
}

/* In flow: its height is the collage height */
.lp-collage__figure {
    position: relative;
    z-index: 3;
    display: block;
    height: clamp(300px, 34vw, 470px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 38px rgba(11, 26, 63, .3));
}

/* Floating screenshots */
.lp-collage__shot {
    position: absolute;
    z-index: 4;
    border-radius: 12px;
    filter: drop-shadow(0 16px 34px rgba(11, 26, 63, .22));
}

.lp-collage__shot--creating { left: 0;  bottom: 6%;  width: clamp(170px, 22vw, 290px); }
.lp-collage__shot--post     { right: 0; top: 4%;     width: clamp(115px, 13vw, 180px); }
.lp-collage__shot--tweet    { right: 0; bottom: 8%;  width: clamp(150px, 18vw, 245px); }

/* Tablet: drop the small post card, keep the composition readable */
@media (max-width: 1100px) {
    .lp-collage__shot--post { display: none; }
    .lp-collage__panel { width: min(680px, 78%); }
}

/* Mobile keeps the overlap composition but drops the three floating
   screenshots — only the figure and the panel behind it remain. */
@media (max-width: 900px) {
    .lp-collage__shots { display: none; }

    .lp-collage {
        max-width: 540px;
        min-height: clamp(300px, 64vw, 430px);
    }

    .lp-collage__figure {
        height: clamp(300px, 64vw, 430px);
    }

    .lp-collage__panel {
        width: 94%;
        box-shadow: 0 -8px 40px rgba(11, 26, 63, .18);
    }
}

@media (max-width: 575px) {
    .lp-collage { min-height: clamp(280px, 76vw, 380px); }
    .lp-collage__figure { height: clamp(280px, 76vw, 380px); }
    .lp-collage__panel { width: 100%; }
    .lp-collage__grid { grid-template-columns: 1fr 1fr; }
    .lp-collage__grid > :nth-child(3) { grid-column: span 2; }
}

/* --------------------------------------------------------------- services */

.lp-services { background: var(--lp-white); }

.lp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    margin-top: clamp(34px, 5vw, 52px);
}

.lp-card {
    background: var(--lp-card);
    border-radius: var(--lp-radius);
    padding: 34px 26px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lp-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(11, 26, 63, .1); }

.lp-card__icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 16px rgba(11, 26, 63, .08);
}

.lp-card h4 { font-size: 1.06rem; margin-bottom: 8px; }
.lp-card h4 a { color: var(--lp-ink); }
.lp-card h4 a:hover { color: var(--lp-indigo); }
.lp-card p { font-size: .88rem; }

/* ------------------------------------------------------------- how it works */

.lp-works { background: var(--lp-lavender); }

.lp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 10px;
    background: #fff;
    border-radius: var(--lp-radius);
    padding: 16px;
    margin-top: clamp(34px, 5vw, 52px);
    box-shadow: 0 14px 34px rgba(11, 26, 63, .06);
}

.lp-step {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--lp-ink);
    font-weight: 600;
    font-size: clamp(.88rem, 1.6vw, .96rem);
    transition: background .18s ease;
}

.lp-step:hover { background: var(--lp-card); }

.lp-step__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 11px;
    background: var(--lp-card);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--lp-indigo);
}

.lp-step--active { background: var(--lp-card); }
.lp-step--active .lp-step__icon { background: var(--lp-indigo); color: #fff; }

/* ------------------------------------------------------------ integration */

.lp-integration { background: var(--lp-white); }

.lp-integration__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
}

@media (max-width: 767px) {
    .lp-integration__wrap { text-align: center; }
    .lp-integration .lp-section-head { display: flex; flex-direction: column; align-items: center; }
}

.lp-integration p { margin: 14px 0 26px; font-size: .95rem; }

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

.lp-apps img {
    width: 100%;
    max-width: 520px;
    height: auto;
}

/* ----------------------------------------------------------------- footer */

.lp-footer { background: var(--lp-white); padding: clamp(40px, 6vw, 68px) 0 26px; }

.lp-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 20px;
    padding-bottom: 34px;
}

.lp-trust__item {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
    position: relative;
    color: var(--lp-ink);
    font-weight: 600;
    font-size: clamp(.85rem, 1.6vw, .93rem);
}

.lp-trust__item + .lp-trust__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--lp-line);
}

@media (max-width: 767px) {
    .lp-trust__item + .lp-trust__item::before { display: none; }
    .lp-trust__item { justify-content: flex-start; }
}

.lp-trust__icon { font-size: 24px; color: var(--lp-ink); flex-shrink: 0; }

.lp-footer__bar {
    border-top: 1px solid var(--lp-line);
    padding-top: 22px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.lp-footer__logo img { max-height: 34px; width: auto; }

.lp-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-left: auto;
}

.lp-footer__links a { color: var(--lp-body); font-size: .87rem; }
.lp-footer__links a:hover { color: var(--lp-indigo); }

@media (max-width: 575px) {
    .lp-footer__bar { flex-direction: column; align-items: flex-start; }
    .lp-footer__links { margin-left: 0; }
}

/* -------------------------------------------------------------- preloader */

.lp-preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lpFadeOut .4s ease .45s forwards;
}

.lp-preloader img { max-height: 56px; }

@keyframes lpFadeOut { to { opacity: 0; visibility: hidden; } }

/* ------------------------------------------------------------ scroll-to-top */

.lp-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--lp-indigo);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 10px 24px rgba(91, 97, 234, .35);
    z-index: 900;
    cursor: pointer;
}

.lp-top.show { display: flex; }
.lp-top:hover { background: var(--lp-indigo-deep); color: #fff; }

/* ---------------------------------------------------------- small screens */

@media (max-width: 767px) {
    .lp-shell {
        padding-inline: 16px;
    }

    .lp-header {
        padding-top: 12px;
    }

    .lp-nav {
        width: 100%;
        min-width: 0;
        gap: 10px;
        padding: 9px 10px 9px 18px;
    }

    .lp-nav__logo {
        min-width: 0;
        max-width: calc(100% - 54px);
    }

    .lp-nav__logo img {
        max-width: min(190px, 100%);
        max-height: 34px;
    }

    .lp-mobile-menu {
        width: 100%;
    }

    .lp-hero {
        padding-top: 36px;
    }

    .lp-hero__badge {
        max-width: 100%;
        justify-content: center;
        padding-inline: 14px;
        text-align: center;
        line-height: 1.4;
    }

    .lp-hero h1 {
        max-width: 17ch;
        margin-bottom: 16px;
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.14;
    }

    .lp-hero__lead {
        max-width: 38rem;
        padding-inline: 2px;
        line-height: 1.65;
    }

    .lp-hero__actions {
        margin-top: 24px;
    }

    .lp-collage {
        width: 100%;
        margin-top: 36px;
    }

    .lp-collage__panel,
    .lp-collage__shots,
    .lp-collage__shot {
        min-width: 0;
        max-width: 100%;
    }

    .lp-section-head,
    .lp-section-title,
    .lp-section-head p {
        width: 100%;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575px) {
    .lp-band--hero {
        padding-bottom: 72px;
    }

    .lp-hero__actions .lp-btn {
        width: min(100%, 280px);
    }

    .lp-collage__panel {
        border-radius: 12px;
    }

    .lp-collage__bar,
    .lp-collage__grid {
        padding-inline: 12px;
    }

    .lp-collage__chart {
        gap: 4px;
        padding-inline: 12px;
    }

    .lp-collage__shots {
        grid-template-columns: 1fr;
    }

    .lp-card,
    .lp-steps {
        padding-inline: 16px;
    }

    .lp-footer__bar,
    .lp-footer__links {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
