/* Shoppi — "Vendi su Shoppi" landing.
   Palette and scale come from the Shoppi Sell design system: navy shell,
   red accent, amber highlight on dark surfaces only. */

:root {
    --sl-navy:      #0B1B33;
    --sl-navy-mid:  #0C1F3D;
    --sl-navy-top:  #132B52;
    --sl-red:       #E8113C;
    --sl-red-dark:  #C40E32;
    --sl-amber:     #FFB020;
    --sl-green:     #2FBF83;
    --sl-green-dk:  #0E8A5F;
    --sl-blue:      #0B5FD9;
    --sl-ink:       #0B1B33;
    --sl-ink-2:     #46536B;
    --sl-ink-3:     #6B7689;
    --sl-ink-4:     #8A93A6;
    --sl-ink-5:     #A3AEC0;
    --sl-line:      #ECEFF4;
    --sl-line-2:    #D7DEE8;
    --sl-surface:   #F8FAFC;
    --sl-surface-2: #F4F6FA;
    --sl-surface-3: #FAFBFD;
}

.sl {
    font-family: Poppins, Helvetica, Arial, sans-serif;
    color: var(--sl-ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

.sl *,
.sl *::before,
.sl *::after { box-sizing: border-box; }

.sl a { color: var(--sl-ink); text-decoration: none; }
.sl a:hover { color: var(--sl-red); }

.sl-wrap { max-width: 1440px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.sl-narrow { max-width: 1080px; margin-left: auto; margin-right: auto; }

.sl-eye {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sl-red);
}

.sl-h2 {
    margin: 10px 0 0;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.18;
    text-wrap: pretty;
}

.sl-lead {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--sl-ink-3);
}

.sl-center { text-align: center; }
.sl-center .sl-lead { margin-left: auto; margin-right: auto; max-width: 66ch; }

/* ---------- buttons ---------- */
.sl-btn {
    display: inline-block;
    border: none;
    border-radius: 11px;
    padding: 13px 26px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}
/* Two classes on purpose: `.sl a` (0,1,1) would otherwise out-specify a
   single-class `.sl-btn-red` and repaint every button's label ink-navy. */
.sl .sl-btn-red { background: var(--sl-red); color: #fff; }
.sl .sl-btn-red:hover { background: var(--sl-red-dark); color: #fff; }
.sl .sl-btn-glass { background: rgba(255,255,255,.10); color: #fff; }
.sl .sl-btn-glass:hover { background: rgba(255,255,255,.20); color: #fff; }
.sl .sl-btn-navy { background: var(--sl-navy); color: #fff; }
.sl .sl-btn-navy:hover { background: var(--sl-red); color: #fff; }
.sl .sl-btn-line {
    background: #fff;
    color: var(--sl-ink);
    border: 1.5px solid var(--sl-line-2);
}
.sl .sl-btn-line:hover { border-color: var(--sl-red); color: var(--sl-red); }

/* ---------- nav ---------- */
.sl-nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--sl-line);
    transition: box-shadow .2s ease;
}
.sl-nav.is-stuck { box-shadow: 0 6px 24px rgba(11,27,51,.07); }
.sl-nav .sl-wrap {
    display: flex;
    align-items: center;
    gap: 26px;
    padding-top: 13px;
    padding-bottom: 13px;
}
.sl-nav-logo img { height: 30px; width: auto; display: block; }
.sl-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}
.sl-nav-links a { font-size: 14px; font-weight: 500; color: var(--sl-ink-2); }
.sl-nav-links a:hover { color: var(--sl-ink); }
.sl-nav-cta {
    background: var(--sl-red);
    color: #fff !important;
    border-radius: 10px;
    padding: 9px 18px;
    font-weight: 600 !important;
    white-space: nowrap;
}
.sl-nav-cta:hover { background: var(--sl-red-dark); }

/* ---------- hero ---------- */
.sl-hero {
    background: linear-gradient(180deg, var(--sl-navy-top) 0%, var(--sl-navy-mid) 55%, var(--sl-navy) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sl-hero::before {
    content: "";
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(96,146,222,.14) 0%, rgba(96,146,222,0) 70%);
    pointer-events: none;
}
.sl-hero .sl-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 64px;
    padding-bottom: 72px;
}
.sl-hero-copy { flex: 1 1 460px; min-width: 300px; }
.sl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,176,32,.14);
    color: var(--sl-amber);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.sl-hero h1 {
    margin: 18px 0 0;
    font-size: clamp(30px, 3.8vw, 50px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    text-wrap: pretty;
}
.sl-hero-sub {
    margin: 16px 0 0;
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    max-width: 52ch;
}
.sl-hero-sub strong { color: #fff; font-weight: 700; }
.sl-hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.sl-hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.sl-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.sl-tick { color: var(--sl-green); font-weight: 800; }

/* ---------- hero feed card ---------- */
.sl-feed { flex: 0 1 360px; min-width: 280px; color: var(--sl-ink); }
.sl-feed-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 32px 70px rgba(0,0,0,.35);
}
@keyframes slFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.sl-feed-slide { animation: slFade .5s ease both; }
.sl-feed-head { display: flex; align-items: center; gap: 9px; padding: 12px 14px; }
.sl-feed-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.sl-feed-who { flex: 1; min-width: 0; }
.sl-feed-seller { font-size: 12.5px; font-weight: 600; }
.sl-feed-meta { font-size: 11px; color: var(--sl-ink-4); }
.sl-feed-follow {
    border: 1.5px solid var(--sl-line-2);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 600;
    flex-shrink: 0;
}
.sl-feed-media {
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, #E7ECF4 0%, #F6F8FC 55%, #E3E9F3 100%);
    overflow: hidden;
}
.sl-feed-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 34%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 42%),
        radial-gradient(circle at 76% 72%, rgba(11,27,51,.09) 0%, rgba(11,27,51,0) 46%);
}
.sl-feed-chip {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 1;
    border-radius: 7px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    color: #fff;
}
.sl-feed-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.86);
    box-shadow: 0 8px 22px rgba(11,27,51,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sl-ink);
}
.sl-feed-body { padding: 12px 14px 14px; }
.sl-feed-title { font-size: 14px; font-weight: 700; }
.sl-feed-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sl-ink-4);
    margin-top: 8px;
}
.sl-feed-tags { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.sl-feed-item {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--sl-line);
    border-radius: 11px;
    padding: 6px 10px;
    background: var(--sl-surface-3);
    font-size: 11.5px;
}
.sl-feed-thumb {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: var(--sl-surface-2);
    flex-shrink: 0;
}
.sl-feed-item-name { display: block; font-weight: 600; }
.sl-feed-item-price { display: block; font-weight: 700; color: var(--sl-red); }
.sl-feed-kind {
    align-self: center;
    background: var(--sl-surface-2);
    color: var(--sl-ink-2);
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
}
.sl-dots { display: flex; gap: 5px; justify-content: center; padding: 0 0 12px; background: #fff; }
.sl-dots button {
    width: 6px; height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #E1E6EE;
    cursor: pointer;
    transition: background .3s;
}
.sl-dots button.is-on { background: var(--sl-red); }

/* ---------- why it works ---------- */
.sl-why { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.sl-why-side { flex: 0 1 360px; min-width: 280px; margin: 0 auto; }
.sl-why-main { flex: 1 1 420px; min-width: 300px; }

.sl-stories { display: flex; gap: 14px; margin-bottom: 16px; overflow: hidden; }
.sl-story { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.sl-story-ring {
    display: inline-flex;
    padding: 3px;
    border-radius: 50%;
    background: #E1E6EE;
}
.sl-story-ring.is-live { background: linear-gradient(135deg, var(--sl-red), var(--sl-amber)); }
.sl-story-face {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--sl-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--sl-ink-2);
}
.sl-story-name { font-size: 10.5px; color: var(--sl-ink-2); }

.sl-quote {
    border: 1px solid var(--sl-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 56px rgba(11,27,51,.1);
    padding: 26px;
}
.sl-quote-text { font-size: 15px; line-height: 1.75; }
.sl-quote-by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.sl-quote-face {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sl-red), var(--sl-amber));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.sl-quote-name { font-size: 14px; font-weight: 700; }
.sl-quote-role { font-size: 12.5px; color: var(--sl-ink-4); }

.sl-points { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.sl-point { display: flex; align-items: flex-start; gap: 14px; }
.sl-point-ico {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--sl-surface-2);
    color: var(--sl-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sl-point-title { font-size: 15.5px; font-weight: 700; }
.sl-point p { margin: 4px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--sl-ink-3); }

.sl-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--sl-line);
}
.sl-stat-val { font-size: 24px; font-weight: 800; color: var(--sl-red); letter-spacing: -0.01em; }
.sl-stat-lbl { font-size: 12px; color: var(--sl-ink-3); margin-top: 2px; max-width: 20ch; }
.sl-source { font-size: 10.5px; color: var(--sl-ink-5); margin-top: 12px; }

/* ---------- pricing ---------- */
.sl-plan {
    background: var(--sl-navy);
    color: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    position: relative;
    box-shadow: 0 28px 60px rgba(11,27,51,.28);
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 34px;
}
.sl-plan-badge {
    position: absolute;
    top: -12px; left: 36px;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--sl-red);
    color: #fff;
}
.sl-plan-head { flex: 0 1 300px; min-width: 260px; }
.sl-plan-head h3 { margin: 6px 0 0; font-size: 20px; font-weight: 800; }
.sl-plan-head p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.6); }
.sl-plan-price { display: flex; align-items: baseline; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.sl-plan-num { font-size: 34px; font-weight: 800; letter-spacing: -0.01em; }
.sl-plan-per { font-size: 14px; color: rgba(255,255,255,.6); }
.sl-plan-note { font-size: 12.5px; font-weight: 600; color: var(--sl-amber); margin-top: 4px; }
.sl-plan-cta { display: block; text-align: center; margin-top: 20px; padding: 13px; font-size: 14px; }
.sl-plan-fine { text-align: center; margin-top: 10px; font-size: 11.5px; color: rgba(255,255,255,.55); }
.sl-plan-feats {
    flex: 1 1 380px;
    min-width: 280px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 24px;
    align-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.sl-plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255,255,255,.85);
}
.sl-plan-feats .sl-tick { flex-shrink: 0; }

/* ---------- calculator ---------- */
.sl-calc {
    margin-top: 22px;
    border: 1px solid var(--sl-line);
    border-radius: 16px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sl-calc-left { flex: 1 1 320px; min-width: 260px; }
.sl-calc-right { flex: 1 1 300px; min-width: 260px; display: flex; flex-direction: column; gap: 10px; }
.sl-calc-title { font-size: 15.5px; font-weight: 700; }
.sl-calc-hint { font-size: 13px; color: var(--sl-ink-3); margin-top: 3px; }
.sl-calc input[type="range"] {
    width: 100%;
    margin-top: 18px;
    accent-color: var(--sl-red);
    cursor: pointer;
}
.sl-calc-big { font-size: 22px; font-weight: 800; margin-top: 8px; }
.sl-calc-big span { font-size: 13px; font-weight: 500; color: var(--sl-ink-4); }
.sl-calc-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--sl-ink-2); }
.sl-calc-row b { font-weight: 600; }
.sl-calc-net {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 800;
    color: var(--sl-green-dk);
    border-top: 1px solid var(--sl-line);
    padding-top: 10px;
}
.sl-calc-note { font-size: 12px; color: var(--sl-ink-4); line-height: 1.55; margin-top: 2px; }
.sl-calc-note a { color: var(--sl-red); font-weight: 600; }

/* ---------- tiles ---------- */
.sl-tiles {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}
.sl-tile { text-align: center; padding: 18px 12px; border: 1px solid var(--sl-line); border-radius: 14px; }
.sl-tile-val { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.sl-tile-lbl { font-size: 12.5px; color: var(--sl-ink-3); margin-top: 3px; }

/* ---------- cloud cross-sell ---------- */
.sl-cloud {
    max-width: 820px;
    margin: 22px auto 0;
    border: 1px solid var(--sl-line);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.sl-cloud img { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; }
.sl-cloud-copy { flex: 1 1 300px; min-width: 240px; }
.sl-cloud-title { font-size: 14.5px; font-weight: 700; }
.sl-cloud-desc { font-size: 13px; color: var(--sl-ink-3); margin-top: 3px; }
.sl-oracle { color: #C74634; font-weight: 700; }
.sl-cloud .sl-btn { flex-shrink: 0; padding: 10px 20px; font-size: 13.5px; border-radius: 10px; }

/* ---------- advertising ---------- */
.sl-panel { background: var(--sl-surface); border-radius: 22px; padding: 48px 44px; }
.sl-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 30px;
}
.sl-card { background: #fff; border: 1px solid var(--sl-line); border-radius: 16px; padding: 26px 24px; }
.sl-card-ico {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: var(--sl-surface-2);
    color: var(--sl-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sl-card-title { font-size: 16px; font-weight: 700; margin-top: 14px; }
.sl-card p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--sl-ink-3); text-wrap: pretty; }
.sl-panel-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 28px; }
.sl-panel-cta small { font-size: 12.5px; color: var(--sl-ink-4); }

/* ---------- what you can sell ---------- */
.sl-kinds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin: 30px auto 0;
    max-width: 1000px;
}
.sl-kind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 12px;
    border-radius: 16px;
    text-align: center;
    transition: background .18s ease;
}
.sl-kind:hover { background: var(--sl-surface); }
.sl-kind-ico {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--sl-surface-2);
    color: var(--sl-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sl-kind-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; }

/* ---------- tap to pay ---------- */
.sl-dark {
    background: linear-gradient(160deg, var(--sl-navy-top) 0%, var(--sl-navy) 80%);
    color: #fff;
    border-radius: 22px;
    padding: 48px 44px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.sl-dark-copy { flex: 1 1 380px; min-width: 280px; }
.sl-dark .sl-eye { color: var(--sl-amber); }
.sl-dark h2 { margin: 10px 0 0; font-size: 28px; font-weight: 800; letter-spacing: -0.01em; text-wrap: pretty; }
.sl-dark-lead { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.72); max-width: 50ch; }
.sl-dark-fine { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 18px; }
.sl-dark-list { flex: 1 1 380px; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.sl-dark-item { display: flex; align-items: flex-start; gap: 14px; }
.sl-dark-ico {
    width: 38px; height: 38px;
    border-radius: 11px;
    background: rgba(255,255,255,.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sl-dark-item-title { font-size: 15px; font-weight: 700; }
.sl-dark-item p { margin: 4px 0 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.65); }

/* ---------- steps ---------- */
.sl-step { background: var(--sl-surface); border-radius: 16px; padding: 28px 26px; }
.sl-step-n {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--sl-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}
.sl-step-title { font-size: 16.5px; font-weight: 700; margin-top: 14px; }
.sl-step p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--sl-ink-3); text-wrap: pretty; }

/* ---------- faq ---------- */
.sl-faq { max-width: 900px; margin: 0 auto; }
.sl-faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.sl-faq-item { border: 1px solid var(--sl-line); border-radius: 14px; overflow: hidden; }
.sl-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--sl-ink);
    transition: background .18s ease;
}
.sl-faq-q:hover { background: var(--sl-surface); }
.sl-faq-chev { flex-shrink: 0; color: var(--sl-ink-4); transition: transform .2s ease; }
.sl-faq-q[aria-expanded="true"] .sl-faq-chev { transform: rotate(180deg); }
.sl-faq-a { display: none; margin: 0; padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: var(--sl-ink-2); text-wrap: pretty; }
.sl-faq-a.is-open { display: block; }
.sl-faq-a a { color: var(--sl-red); font-weight: 600; }

/* ---------- final cta ---------- */
.sl-final { background: var(--sl-surface-2); border-radius: 20px; padding: 48px 44px; text-align: center; }
.sl-final h2 {
    margin: 0 auto;
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    letter-spacing: -0.01em;
    max-width: 26ch;
    text-wrap: pretty;
}
.sl-final p { margin: 12px auto 0; font-size: 15px; line-height: 1.6; color: var(--sl-ink-3); max-width: 56ch; }
.sl-final-actions { display: flex; gap: 12px; margin-top: 24px; justify-content: center; flex-wrap: wrap; }

/* ---------- section rhythm ---------- */
.sl-sec { padding-top: 64px; }
.sl-sec-lg { padding-top: 72px; }
.sl-sec-last { padding-top: 72px; padding-bottom: 64px; }

/* ---------- shared footer ---------- */
/* The grid-only Bootstrap build ships no text-align utilities, and the shared
   footer markup uses three of them. Scoped to .fat-footer so they cannot leak. */
.fat-footer .text-center { text-align: center !important; }
@media (min-width: 768px) {
    .fat-footer .text-md-start { text-align: left !important; }
    .fat-footer .text-md-end { text-align: right !important; }
}

/* ---------- reveal ---------- */
/* Gated on .sl-js, set by sell.js: without scripting the sections must stay
   visible rather than sit at opacity 0 forever. */
.sl-js .sl-rise { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.sl-js .sl-rise.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .sl-js .sl-rise { opacity: 1; transform: none; transition: none; }
    .sl-feed-slide { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
    .sl-nav-links li:not(.sl-nav-keep) { display: none; }
    .sl-plan, .sl-panel, .sl-dark, .sl-final { padding-left: 26px; padding-right: 26px; }
}
@media (max-width: 560px) {
    .sl-nav .sl-wrap { gap: 12px; }
    .sl-nav-links { gap: 12px; }
    .sl-nav-logo img { height: 26px; }
    .sl-nav-links li.sl-nav-login { display: none; }
    .sl-nav-cta { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 640px) {
    .sl-hero .sl-wrap { padding-top: 44px; padding-bottom: 52px; }
    .sl-h2, .sl-dark h2 { font-size: 25px; }
    .sl-plan, .sl-panel, .sl-dark, .sl-final { padding: 32px 20px; }
    .sl-calc { padding: 22px 20px; gap: 24px; }
    .sl-sec, .sl-sec-lg, .sl-sec-last { padding-top: 52px; }
}
