/* ═══════════════════════════════════════════════════════════
   الكارت الشخصي للمدرس — Landing
   ═══════════════════════════════════════════════════════════ */
:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA7C11;
    --navy: #0A192F;
    --navy-mid: #112240;
    --navy-light: #172A45;
    --teal: #64FFDA;
    --cream: #FAF8F5;
    --text: #0f172a;
    --muted: #64748b;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.landing-body {
    margin: 0;
    font-family: 'Alexandria', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.lnd-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: background .4s, box-shadow .4s, padding .4s;
}
.lnd-nav.is-scrolled {
    background: rgba(10, 25, 47, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    padding: .65rem 0;
}
.lnd-nav__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.lnd-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
}
.lnd-logo__mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .65rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(212,175,55,.35);
}
.lnd-nav__links {
    display: none;
    align-items: center;
    gap: 1.75rem;
}
@media (min-width: 768px) { .lnd-nav__links { display: flex; } }
.lnd-nav__links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    transition: color .2s;
}
.lnd-nav__links a:hover { color: var(--gold); }
.lnd-nav__actions { display: flex; align-items: center; gap: .5rem; }
.lnd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .65rem 1.25rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.lnd-btn:hover { transform: translateY(-2px); }
.lnd-btn--ghost {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
}
.lnd-btn--gold {
    background: linear-gradient(135deg, var(--gold), #e8c547);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(212,175,55,.35);
}
.lnd-btn--gold-lg {
    padding: 1rem 2rem;
    font-size: .95rem;
    border-radius: 1rem;
}
.lnd-btn--navy {
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,.3);
}

/* ── Hero ── */
.lnd-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    overflow: hidden;
}
.lnd-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(212,175,55,.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(100,255,218,.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(139,92,246,.08) 0%, transparent 45%);
    pointer-events: none;
}
.lnd-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    pointer-events: none;
}
.lnd-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .lnd-hero__inner { grid-template-columns: 1fr 1fr; }
}
.lnd-hero__copy { max-width: 34rem; }
.lnd-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25);
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    animation: lnd-fade-up .8s var(--ease-out-expo) both;
}
.lnd-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
    animation: lnd-pulse 2s ease infinite;
}
@keyframes lnd-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}
.lnd-hero__title {
    font-size: clamp(2rem, 5.5vw, 3.35rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1rem;
    animation: lnd-fade-up .8s .1s var(--ease-out-expo) both;
}
.lnd-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lnd-hero__sub {
    font-size: clamp(.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,.65);
    font-weight: 600;
    line-height: 1.75;
    margin: 0 0 1.75rem;
    animation: lnd-fade-up .8s .2s var(--ease-out-expo) both;
}
.lnd-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
    animation: lnd-fade-up .8s .3s var(--ease-out-expo) both;
}
.lnd-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    animation: lnd-fade-up .8s .4s var(--ease-out-expo) both;
}
.lnd-trust-item {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
}
.lnd-trust-item i { color: var(--gold); font-size: .85rem; }

/* ── Real card device frame ── */
.lnd-device-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lnd-fade-up 1s .25s var(--ease-out-expo) both;
}
.lnd-device-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(212,175,55,.25) 0%, transparent 70%);
    filter: blur(40px);
    top: 10%;
    left: 15%;
    pointer-events: none;
}
.lnd-device {
    position: relative;
    width: min(100%, 300px);
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    border-radius: 2.5rem;
    padding: .65rem;
    box-shadow:
        0 0 0 2px rgba(212,175,55,.2),
        0 40px 80px -20px rgba(0,0,0,.6),
        inset 0 1px 0 rgba(255,255,255,.08);
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
    transition: transform .6s var(--ease-out-expo);
}
.lnd-device-wrap:hover .lnd-device {
    transform: perspective(900px) rotateY(-2deg) rotateX(2deg) translateY(-8px);
}
.lnd-device__notch {
    position: absolute;
    top: .85rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 1.25rem;
    background: #0a0a12;
    border-radius: 999px;
    z-index: 5;
}
.lnd-device__screen {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    background: #0f172a;
    position: relative;
    contain: strict;
    isolation: isolate;
}
.lnd-device__caption {
    margin-top: 1.25rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.lnd-device__caption i { color: var(--gold); }

/* Live card preview inside device — self-contained mini UI */
.lnd-mini {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    color: #e2e8f0;
    font-family: 'Alexandria', sans-serif;
    position: relative;
    overflow: hidden;
}
.lnd-mini__header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: 2rem .5rem .35rem;
    background: rgba(15,23,42,.98);
    border-bottom: 1px solid rgba(212,175,55,.12);
    z-index: 2;
}
.lnd-mini__header-avatar {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    border: 1.5px solid #D4AF37;
    object-fit: cover;
}
.lnd-mini__header-text { flex: 1; min-width: 0; }
.lnd-mini__header-name { font-size: .55rem; font-weight: 900; color: #D4AF37; margin: 0; }
.lnd-mini__header-sub { font-size: .45rem; font-weight: 700; color: #64748b; margin: 0; }
.lnd-mini__header-qr {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: .35rem;
    background: linear-gradient(135deg, #AA7C11, #D4AF37);
    color: #0A192F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .55rem;
}
.lnd-mini__viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 0;
}
.lnd-mini__track {
    will-change: transform;
}
.lnd-mini__sec {
    padding: .45rem .5rem .35rem;
}
.lnd-mini__sec--last { padding-bottom: 1.5rem; }
.lnd-mini__head {
    font-size: .42rem;
    font-weight: 800;
    color: #D4AF37;
    letter-spacing: .04em;
    margin-bottom: .15rem;
}
.lnd-mini__head i { margin-left: .2rem; }
.lnd-mini__title {
    font-size: .58rem;
    font-weight: 900;
    margin: 0 0 .35rem;
    color: #fff;
}
.lnd-mini__bio {
    background: rgba(23,42,69,.85);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: .65rem;
    padding: .5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lnd-mini__bio::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(#d4af37 0.5px, transparent 0.5px);
    background-size: 8px 8px;
    opacity: .04;
    pointer-events: none;
}
.lnd-mini__badge {
    display: inline-block;
    font-size: .38rem;
    font-weight: 900;
    color: #D4AF37;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.25);
    border-radius: 999px;
    padding: .15rem .4rem;
    margin-bottom: .35rem;
}
.lnd-mini__bio-photo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 2px solid #D4AF37;
    object-fit: cover;
    margin: 0 auto .3rem;
    display: block;
}
.lnd-mini__socials {
    display: flex;
    justify-content: center;
    gap: .25rem;
    margin-bottom: .3rem;
}
.lnd-mini__soc {
    width: 1rem;
    height: 1rem;
    border-radius: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .45rem;
    color: #fff;
}
.lnd-mini__soc--yt { background: #dc2626; }
.lnd-mini__soc--tg { background: #0ea5e9; }
.lnd-mini__soc--wa { background: #16a34a; }
.lnd-mini__bio-name { font-size: .62rem; font-weight: 900; color: #D4AF37; margin: 0 0 .1rem; }
.lnd-mini__bio-tag { font-size: .4rem; font-weight: 700; color: #64748b; margin: 0 0 .35rem; }
.lnd-mini__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .2rem;
    font-size: .38rem;
}
.lnd-mini__stats div {
    background: rgba(15,23,42,.5);
    border: 1px solid rgba(212,175,55,.1);
    border-radius: .3rem;
    padding: .2rem;
}
.lnd-mini__stats span { display: block; color: #D4AF37; font-weight: 800; }
.lnd-mini__stats strong { font-weight: 900; color: #fff; }
.lnd-mini__portal {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .4rem;
    border-radius: .45rem;
    margin-bottom: .25rem;
    border: 1px solid transparent;
    font-size: .48rem;
}
.lnd-mini__portal-tag { font-size: .38rem; font-weight: 800; opacity: .8; }
.lnd-mini__portal i { font-size: .55rem; margin-right: auto; }
.lnd-mini__portal-name { font-weight: 900; }
.lnd-mini__portal--green { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.25); color: #6ee7b7; }
.lnd-mini__portal--red { background: rgba(239,68,68,.12); border-color: rgba(239,68,68,.25); color: #fca5a5; }
.lnd-mini__portal--blue { background: rgba(14,165,233,.12); border-color: rgba(14,165,233,.25); color: #7dd3fc; }
.lnd-mini__card-sm {
    background: rgba(23,42,69,.6);
    border: 1px solid rgba(212,175,55,.15);
    border-radius: .45rem;
    padding: .35rem .4rem;
    font-size: .45rem;
}
.lnd-mini__card-sm strong { color: #D4AF37; display: block; margin-bottom: .1rem; }
.lnd-mini__card-sm p { margin: 0; color: #64748b; font-weight: 700; font-size: .4rem; }
.lnd-mini__honor {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .35rem;
    border-radius: .4rem;
    background: rgba(23,42,69,.5);
    border: 1px solid rgba(100,116,139,.2);
    margin-bottom: .2rem;
    font-size: .42rem;
}
.lnd-mini__honor--gold { background: rgba(212,175,55,.08); border-color: rgba(212,175,55,.2); }
.lnd-mini__honor strong { display: block; font-weight: 900; }
.lnd-mini__honor small { color: #64748b; font-weight: 700; font-size: .38rem; }
.lnd-mini__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.lnd-mini__pill {
    text-align: center;
    padding: .3rem;
    border-radius: .35rem;
    background: rgba(14,165,233,.1);
    border: 1px solid rgba(14,165,233,.2);
    font-size: .45rem;
    font-weight: 900;
    color: #38bdf8;
}
.lnd-mini__pill small { display: block; font-size: .35rem; color: #64748b; font-weight: 700; }
.lnd-mini__book {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem;
    border-radius: .45rem;
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.25);
    font-size: .45rem;
}
.lnd-mini__book i { font-size: .7rem; color: #a78bfa; }
.lnd-mini__book strong { display: block; font-weight: 900; }
.lnd-mini__book span { color: #D4AF37; font-weight: 800; font-size: .4rem; }
.lnd-mini__chips { display: flex; flex-wrap: wrap; gap: .2rem; }
.lnd-mini__chips span {
    font-size: .38rem;
    font-weight: 800;
    padding: .15rem .35rem;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #94a3b8;
}
.lnd-mini__faq {
    padding: .3rem .35rem;
    border-radius: .35rem;
    background: rgba(23,42,69,.5);
    border: 1px solid rgba(100,116,139,.15);
    font-size: .42rem;
    font-weight: 800;
    margin-bottom: .2rem;
}
.lnd-mini__fab {
    position: absolute;
    bottom: .5rem;
    left: .5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .65rem;
    box-shadow: 0 3px 10px rgba(37,211,102,.4);
    animation: lnd-fab-pulse 2.5s ease infinite;
    z-index: 5;
}
@keyframes lnd-fab-pulse {
    0%, 100% { box-shadow: 0 3px 10px rgba(37,211,102,.4); }
    50% { box-shadow: 0 3px 18px rgba(37,211,102,.65); }
}
@keyframes lnd-mini-scroll {
    0% { transform: translateY(0); }
    8% { transform: translateY(0); }
    92% { transform: translateY(var(--scroll-end, -200px)); }
    100% { transform: translateY(var(--scroll-end, -200px)); }
}

/* ── QR callout ── */
.lnd-qr-callout {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    border-block: 1px solid rgba(212,175,55,.15);
    padding: 2rem 1.25rem;
}
.lnd-qr-callout__inner {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}
@media (min-width: 768px) {
    .lnd-qr-callout__inner { grid-template-columns: auto 1fr auto; }
}
.lnd-qr-callout__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(212,175,55,.15);
    border: 1px solid rgba(212,175,55,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}
.lnd-qr-callout h2 {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 .35rem;
}
.lnd-qr-callout p {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin: 0;
}

/* ── Marquee ── */
.lnd-marquee {
    background: var(--navy-mid);
    border-block: 1px solid rgba(212,175,55,.15);
    padding: .85rem 0;
    overflow: hidden;
}
.lnd-marquee__track {
    display: flex;
    gap: 3rem;
    animation: lnd-marquee 40s linear infinite;
    width: max-content;
}
.lnd-marquee__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    font-size: .75rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
}
.lnd-marquee__item i { color: var(--gold); }
@keyframes lnd-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Sections common ── */
.lnd-section {
    padding: clamp(4rem, 10vw, 7rem) 1.25rem;
}
.lnd-section--cream { background: var(--cream); }
.lnd-section--white { background: #fff; }
.lnd-section--dark {
    background: var(--navy);
    color: #fff;
}
.lnd-container {
    max-width: 72rem;
    margin: 0 auto;
}
.lnd-eyebrow {
    display: inline-block;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: .75rem;
}
.lnd-section--dark .lnd-eyebrow { color: var(--gold); }
.lnd-h2 {
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem;
}
.lnd-lead {
    font-size: clamp(.88rem, 2vw, 1rem);
    font-weight: 600;
    color: var(--muted);
    line-height: 1.75;
    max-width: 38rem;
    margin: 0 0 2.5rem;
}
.lnd-section--dark .lnd-lead { color: rgba(255,255,255,.55); }

/* ── Pain points ── */
.lnd-pain-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) { .lnd-pain-grid { grid-template-columns: repeat(3, 1fr); } }
.lnd-pain-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.lnd-pain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(15,23,42,.12);
}
.lnd-pain-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.lnd-pain-card h3 {
    font-size: .95rem;
    font-weight: 900;
    margin: 0 0 .5rem;
}
.lnd-pain-card p {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Interactive feature stack ── */
.lnd-stack-wrap {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .lnd-stack-wrap { grid-template-columns: 1fr 1.1fr; }
}
.lnd-card-stack {
    position: relative;
    height: 440px;
    perspective: 1200px;
}
.lnd-stack-card {
    position: absolute;
    inset: 0;
    max-width: 22rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(15,23,42,.08);
    padding: 1.75rem;
    box-shadow: 0 24px 48px -16px rgba(15,23,42,.15);
    cursor: pointer;
    transition: transform .65s var(--ease-out-expo), opacity .5s, box-shadow .4s;
    transform-origin: center bottom;
    opacity: 0;
    pointer-events: none;
}
.lnd-stack-card.is-front {
    transform: translateY(-20px) scale(1.02) !important;
    opacity: 1 !important;
    z-index: 10 !important;
    box-shadow: 0 32px 64px -16px rgba(212,175,55,.25);
    border-color: rgba(212,175,55,.35);
    pointer-events: auto;
}
.lnd-stack-card.is-visible {
    opacity: .55;
    pointer-events: auto;
}
.lnd-stack-card[data-pos="1"] { transform: translateY(14px) scale(.96); z-index: 8; opacity: .8; }
.lnd-stack-card[data-pos="2"] { transform: translateY(28px) scale(.92); z-index: 6; opacity: .65; }
.lnd-stack-card[data-pos="3"] { transform: translateY(42px) scale(.88); z-index: 4; opacity: .5; }
.lnd-stack-card[data-pos="4"] { transform: translateY(56px) scale(.84); z-index: 2; opacity: .35; }
.lnd-stack-dots {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.5rem;
}
.lnd-stack-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    border: none;
    background: rgba(15,23,42,.15);
    cursor: pointer;
    padding: 0;
    transition: all .35s var(--ease-out-expo);
}
.lnd-stack-dot.is-active {
    width: 1.5rem;
    background: var(--gold);
}
.lnd-stack-dot.is-progress {
    position: relative;
    overflow: hidden;
}
.lnd-stack-dot.is-progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-dark);
    transform: scaleX(var(--progress, 0));
    transform-origin: right center;
    transition: transform .1s linear;
}
.lnd-stack-card__num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212,175,55,.15);
    line-height: 1;
    margin-bottom: .5rem;
}
.lnd-stack-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 0 .65rem;
}
.lnd-stack-card p {
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}
.lnd-stack-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}
.lnd-stack-card__tag {
    font-size: .62rem;
    font-weight: 800;
    padding: .3rem .6rem;
    border-radius: 999px;
    background: rgba(212,175,55,.1);
    color: var(--gold-dark);
}

/* ── Stats ── */
.lnd-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 768px) { .lnd-stats { grid-template-columns: repeat(4, 1fr); } }
.lnd-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 1.25rem;
}
.lnd-stat__num {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.lnd-stat__label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    margin-top: .35rem;
}

/* ── Bento grid ── */
.lnd-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .lnd-bento { grid-template-columns: repeat(3, 1fr); }
    .lnd-bento__wide { grid-column: span 2; }
    .lnd-bento__tall { grid-row: span 2; }
}
.lnd-bento-card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.07);
    border-radius: 1.35rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.lnd-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(15,23,42,.1);
}
.lnd-bento-card__icon { font-size: 1.75rem; margin-bottom: .75rem; }
.lnd-bento-card h3 {
    font-size: .92rem;
    font-weight: 900;
    margin: 0 0 .4rem;
}
.lnd-bento-card p {
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.lnd-bento-card__mesh {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 8rem;
    height: 8rem;
    border-radius: 999px;
    opacity: .15;
    filter: blur(20px);
    pointer-events: none;
}

/* ── Interactive ID card flip ── */
.lnd-idcard-wrap {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .lnd-idcard-wrap { grid-template-columns: 1fr 1fr; }
}
.lnd-idcard-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.lnd-idcard-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    padding: .45rem 0;
}
.lnd-idcard-list i { color: var(--gold); }
.lnd-idcard-scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1200px;
}
.lnd-idcard {
    width: min(100%, 320px);
    height: 200px;
    cursor: pointer;
}
.lnd-idcard__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .8s var(--ease-out-expo);
    transform-style: preserve-3d;
}
.lnd-idcard.is-flipped .lnd-idcard__inner {
    transform: rotateY(180deg);
}
.lnd-idcard__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 2px solid rgba(212,175,55,.4);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,.4);
}
.lnd-idcard__face--front {
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    padding: 1.25rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    gap: .35rem .75rem;
}
.lnd-idcard__face--back {
    background: linear-gradient(145deg, #0d1f3c, var(--navy));
    transform: rotateY(180deg);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.lnd-idcard__stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.lnd-idcard__chip {
    grid-row: 1 / 3;
    width: 2.5rem;
    height: 2rem;
    border-radius: .35rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    margin-top: .5rem;
}
.lnd-idcard__photo {
    grid-row: 2 / 4;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: .75rem;
    border: 2px solid var(--gold);
    overflow: hidden;
}
.lnd-idcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.lnd-idcard__badge {
    grid-column: 2;
    font-size: .55rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: .05em;
    text-transform: uppercase;
}
.lnd-idcard__name {
    grid-column: 2;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.lnd-idcard__role {
    grid-column: 2;
    font-size: .65rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    margin: 0;
}
.lnd-idcard__stats {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    font-size: .62rem;
    font-weight: 700;
    color: rgba(255,255,255,.55);
}
.lnd-idcard__stats strong { color: var(--gold); font-size: .75rem; }
.lnd-idcard__brand {
    grid-column: 1 / -1;
    font-size: .55rem;
    font-weight: 800;
    color: rgba(212,175,55,.5);
    text-align: left;
}
.lnd-idcard__qr {
    width: 4.5rem;
    height: 4.5rem;
    background: #fff;
    border-radius: .5rem;
    padding: .35rem;
    margin-bottom: .5rem;
}
.lnd-idcard__qr-grid { display: flex; flex-direction: column; gap: 1px; height: 100%; }
.lnd-idcard__qr-row { display: flex; gap: 1px; flex: 1; }
.lnd-idcard__qr-row span { flex: 1; background: #f1f5f9; border-radius: 1px; }
.lnd-idcard__qr-row span.is-dark { background: var(--navy); }
.lnd-idcard__qr-label {
    font-size: .65rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 0 .65rem;
}
.lnd-idcard__back-list {
    list-style: none;
    padding: 0;
    margin: 0 0 .65rem;
    text-align: right;
    width: 100%;
}
.lnd-idcard__back-list li {
    font-size: .6rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    padding: .2rem 0;
    display: flex;
    align-items: center;
    gap: .4rem;
    justify-content: flex-end;
}
.lnd-idcard__back-list i { color: var(--gold); font-size: .55rem; }
.lnd-idcard__back-msg {
    font-size: .58rem;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    font-style: italic;
    margin: 0;
}
.lnd-idcard__hint {
    margin-top: 1.25rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.lnd-idcard__hint i { color: var(--gold); }

/* ── Steps ── */
.lnd-steps {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) { .lnd-steps { grid-template-columns: repeat(3, 1fr); } }
.lnd-step {
    text-align: center;
    padding: 2rem 1.25rem;
    position: relative;
}
.lnd-step__num {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(212,175,55,.3);
}
.lnd-step h3 {
    font-size: .95rem;
    font-weight: 900;
    margin: 0 0 .5rem;
}
.lnd-step p {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Testimonials ── */
.lnd-testimonials {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) { .lnd-testimonials { grid-template-columns: repeat(3, 1fr); } }
.lnd-testimonial {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,175,55,.12);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: transform .35s var(--ease-spring);
}
.lnd-testimonial:hover { transform: translateY(-4px); }
.lnd-testimonial__stars {
    color: var(--gold);
    font-size: .75rem;
    margin-bottom: .75rem;
}
.lnd-testimonial blockquote {
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin: 0 0 1rem;
}
.lnd-testimonial__author {
    display: flex;
    align-items: center;
    gap: .65rem;
}
.lnd-testimonial__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
    object-fit: cover;
    border: 1px solid rgba(212,175,55,.3);
}
.lnd-testimonial__name {
    font-size: .78rem;
    font-weight: 900;
    color: #fff;
}
.lnd-testimonial__role {
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255,255,255,.45);
}

/* ── FAQ ── */
.lnd-faq { max-width: 40rem; margin: 0 auto; }
.lnd-faq-item {
    border-bottom: 1px solid rgba(15,23,42,.08);
}
.lnd-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 800;
    text-align: right;
    cursor: pointer;
    color: var(--text);
}
.lnd-faq-q i {
    transition: transform .3s;
    color: var(--gold-dark);
    flex-shrink: 0;
}
.lnd-faq-item.is-open .lnd-faq-q i { transform: rotate(180deg); }
.lnd-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-out-expo);
}
.lnd-faq-a__inner {
    padding: 0 0 1.15rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.75;
}

/* ── CTA ── */
.lnd-cta {
    position: relative;
    padding: clamp(4rem, 12vw, 8rem) 1.25rem;
    background: var(--navy);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.lnd-cta__rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.lnd-cta__ring {
    position: absolute;
    border: 1px solid rgba(212,175,55,.08);
    border-radius: 999px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lnd-cta__inner { position: relative; z-index: 2; max-width: 36rem; margin: 0 auto; }
.lnd-cta h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 1rem;
}
.lnd-cta p {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0 0 2rem;
}

/* ── Footer ── */
.lnd-footer {
    background: #060d18;
    color: rgba(255,255,255,.45);
    padding: 2rem 1.25rem;
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
}
.lnd-footer a { color: var(--gold); text-decoration: none; }

/* ── Scroll reveal ── */
.lnd-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.lnd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes lnd-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile nav toggle ── */
.lnd-nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .35rem;
}
@media (min-width: 768px) { .lnd-nav__burger { display: none; } }
.lnd-nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}
.lnd-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(10,25,47,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.lnd-mobile-menu.is-open { display: flex; }
.lnd-mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
}
