/*  THE SHOWCASE PAGE.
 *
 *  Layered on top of style.css so the palette, the font and the buttons are
 *  literally the same objects the licence site uses - a buyer who lands here
 *  and later signs in should not feel he changed products.
 */

body.landing { padding-bottom: 0; }

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

.lhead {
    position: sticky; top: 0; z-index: 30;
    background: rgba(11, 7, 20, .82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.lhead-in {
    max-width: 1180px; margin: 0 auto; padding: 0 26px;
    display: flex; align-items: center; gap: 20px; min-height: 70px; flex-wrap: wrap;
}
.lnav { display: flex; align-items: center; gap: 6px; margin-inline-start: auto; flex-wrap: wrap; }
.lnav a { padding: 9px 15px; border-radius: 10px; font-size: 14.5px; font-weight: 600;
          color: var(--textFaint); transition: all .18s ease; }
.lnav a:hover { color: var(--text); background: rgba(167, 139, 250, .09); }
.lnav a.btn { color: #fff; }
.lnav a.btn.ghost { color: var(--textFaint); }

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

.hero { padding: 86px 26px 66px; text-align: center; position: relative; z-index: 1; }
.hero-in { max-width: 860px; margin: 0 auto; }

.eyebrow {
    display: inline-block; padding: 7px 17px; border-radius: 999px;
    background: var(--accentDim); border: 1px solid var(--border);
    color: var(--accentLight); font-size: 13.5px; font-weight: 600;
    margin-bottom: 24px;
    animation: rise .6s cubic-bezier(.2, .8, .3, 1) both;
}

.hero h1 {
    font-size: clamp(34px, 6vw, 58px); line-height: 1.22; margin: 0 0 20px;
    font-weight: 800; letter-spacing: -.5px;
    animation: rise .6s cubic-bezier(.2, .8, .3, 1) .08s both;
}
.grad {
    background: linear-gradient(120deg, var(--accentLight), #d8b4fe, var(--accent));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead {
    font-size: clamp(15px, 2vw, 18px); color: var(--textFaint);
    max-width: 700px; margin: 0 auto 34px; line-height: 1.9;
    animation: rise .6s cubic-bezier(.2, .8, .3, 1) .16s both;
}

.cta { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap;
       animation: rise .6s cubic-bezier(.2, .8, .3, 1) .24s both; }
.btn.big { padding: 15px 34px; font-size: 16px; border-radius: 13px; }
.btn.full { width: 100%; justify-content: center; margin-top: auto; }

/* ---------------- the numbers ---------------- */

.stats-band { padding: 0 26px 70px; position: relative; z-index: 1; }
.lstats {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 14px;
}
.lstat {
    background: linear-gradient(180deg, rgba(30, 19, 48, .72), rgba(22, 13, 36, .82));
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 22px 16px; text-align: center;
    transition: transform .22s ease, border-color .22s ease;
}
.lstat:hover { transform: translateY(-4px); border-color: var(--glow); }
.lstat .n {
    font-size: clamp(24px, 3.4vw, 33px); font-weight: 800; line-height: 1.15;
    background: linear-gradient(120deg, var(--text), var(--accentLight));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    direction: ltr; unicode-bidi: embed;
}
.lstat .l { color: var(--textFaint); font-size: 12.5px; margin-top: 4px; }

.counted { text-align: center; color: var(--faint, var(--textFaint));
           font-size: 12.5px; margin: 22px 0 0; opacity: .75; }

/* ---------------- sections ---------------- */

.sect { padding: 76px 26px; position: relative; z-index: 1; }
.sect.alt { background: rgba(22, 13, 36, .42); border-block: 1px solid var(--border); }
.sect-title {
    text-align: center; font-size: clamp(25px, 4vw, 35px); font-weight: 800;
    margin: 0 0 46px; letter-spacing: -.3px;
}

/* ---------------- features ---------------- */

.feats {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 18px;
}
.feat {
    background: linear-gradient(180deg, rgba(30, 19, 48, .68), rgba(22, 13, 36, .8));
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 24px; transition: transform .22s ease, border-color .22s ease;
}
.feat:hover { transform: translateY(-4px); border-color: var(--border2); }
.feat .ic { font-size: 30px; margin-bottom: 13px; line-height: 1; }
.feat h3 { font-size: 18px; margin: 0 0 9px; font-weight: 700; }
.feat p { color: var(--textFaint); font-size: 14.5px; margin: 0; line-height: 1.85; }
.feat b { color: var(--text); }
.tag {
    display: inline-block; background: var(--accentDim); border: 1px solid var(--border2);
    color: var(--accentLight); font-size: 11.5px; padding: 2px 9px;
    border-radius: 999px; margin-inline-start: 4px;
}

/* ---------------- steps ---------------- */

.steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.step {
    display: flex; gap: 19px; align-items: flex-start;
    background: linear-gradient(180deg, rgba(30, 19, 48, .62), rgba(22, 13, 36, .74));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 21px 24px;
    transition: transform .2s ease, border-color .2s ease;
}
.step:hover { transform: translateX(-5px); border-color: var(--border2); }
.step .num {
    flex: 0 0 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(180deg, var(--accentLight), var(--accent));
    display: grid; place-items: center; font-weight: 800; font-size: 18px; color: #fff;
}
.step h4 { margin: 0 0 5px; font-size: 16.5px; }
.step p { margin: 0; color: var(--textFaint); font-size: 14.5px; line-height: 1.8; }

/* ---------------- technical ---------------- */

.tech {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px;
}
.tcard {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 13px; padding: 21px 22px;
}
.tcard h4 { margin: 0 0 7px; font-size: 15.5px; color: var(--accentLight); }
.tcard p { margin: 0; color: var(--textFaint); font-size: 14px; line-height: 1.8; }

/* ---------------- editions ---------------- */

.eds {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; align-items: stretch;
}
.ed {
    position: relative; display: flex; flex-direction: column;
    background: linear-gradient(180deg, rgba(30, 19, 48, .74), rgba(22, 13, 36, .86));
    border: 1px solid var(--border); border-radius: 19px; padding: 30px 26px;
    transition: transform .22s ease, border-color .22s ease;
}
.ed:hover { transform: translateY(-5px); }
.ed.best { border-color: var(--accent); box-shadow: 0 0 42px rgba(139, 92, 246, .2); }
.badge {
    position: absolute; top: -13px; inset-inline-start: 50%; transform: translateX(50%);
    background: linear-gradient(180deg, var(--accentLight), var(--accent));
    color: #fff; font-size: 12.5px; font-weight: 800;
    padding: 5px 17px; border-radius: 999px; white-space: nowrap;
}
.ed-head { margin-bottom: 19px; }
.ed-head h3 { margin: 0 0 5px; font-size: 22px; font-weight: 800; }
.ed-for { margin: 0; color: var(--textFaint); font-size: 13.5px; }
.ed-list { list-style: none; padding: 0; margin: 0 0 24px; }
.ed-list li { padding: 8px 0; font-size: 14.5px; border-bottom: 1px solid var(--border); }
.ed-list li:last-child { border-bottom: none; }
.ed-list li.off { color: var(--faint, var(--textFaint)); opacity: .55; }
.ed-list b { color: var(--accentLight); }

/* ---------------- closing ---------------- */

.final { padding: 82px 26px; text-align: center; position: relative; z-index: 1; }
.final h2 { font-size: clamp(26px, 4vw, 36px); margin: 0 0 11px; font-weight: 800; }
.final p { color: var(--textFaint); margin: 0 0 28px; font-size: 16px; }

.lfoot {
    border-top: 1px solid var(--border); padding: 40px 26px;
    text-align: center; color: var(--textFaint); font-size: 13.5px;
    position: relative; z-index: 1;
}
.lfoot .brand { justify-content: center; margin-bottom: 13px; }
.lfoot p { margin: 5px 0; }

/* ---------------- reveal on scroll ---------------- */

.reveal { opacity: 0; transform: translateY(22px);
          transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .3, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 640px) {
    .hero { padding: 54px 18px 44px; }
    .sect { padding: 54px 18px; }
    .final { padding: 58px 18px; }
    .lhead-in { padding: 0 16px; min-height: 62px; }
    .lnav { width: 100%; padding-bottom: 10px; }
    .step { padding: 17px 16px; gap: 14px; }
    .ed { padding: 26px 20px; }
}
