@font-face {
    font-family: "Yekan";
    src: url("../../auth/fonts/YekanBakh.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --lm-black: #0a0a0c;
    --lm-black-soft: #121216;
    --lm-gray-900: #1a1a20;
    --lm-gray-800: #25252d;
    --lm-gray-700: #4b4f58;
    --lm-gray-500: #8b919c;
    --lm-gray-300: #c8ccd4;
    --lm-gray-100: #eceef2;
    --lm-orange: #f26522;
    --lm-orange-light: #ff8a4c;
    --lm-orange-deep: #d45418;
    --lm-orange-glow: rgba(242, 101, 34, 0.4);
    --lm-white: #ffffff;
    --lm-radius: 22px;
    --lm-radius-sm: 14px;
    --lm-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    --lm-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
    --lm-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --lm-header-h: 72px;
}

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

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body.lm-landing {
    margin: 0;
    padding: 0;
    font-family: "Yekan", sans-serif;
    background: var(--lm-black);
    color: var(--lm-gray-100);
    direction: rtl;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.lm-nav-open {
    overflow: hidden;
}

body.lm-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(4px);
    animation: lm-fade-in 0.3s ease;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.lm-container {
    width: min(1140px, calc(100% - 48px));
    margin-inline: auto;
}

/* ── Header ── */
.lm-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    transition: background var(--lm-transition), box-shadow var(--lm-transition);
}

.lm-header__bar {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.lm-header__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: var(--lm-header-logo);
    background-size: 56px auto;
    background-repeat: space;
    pointer-events: none;
    mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.lm-header__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% -40%, rgba(242, 101, 34, 0.12), transparent 55%);
    pointer-events: none;
}

.lm-header.is-scrolled .lm-header__bar {
    background: rgba(10, 10, 12, 0.9);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lm-header__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    transition: padding var(--lm-transition);
}

.lm-header.is-scrolled .lm-header__inner {
    padding: 10px 0;
}

.lm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
}

.lm-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(242, 101, 34, 0.25));
}

.lm-brand span {
    font-size: 15px;
    font-weight: 800;
    color: var(--lm-white);
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.lm-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.lm-nav > a:not(.lm-btn) {
    position: relative;
    font-size: 14px;
    color: var(--lm-gray-300);
    padding: 4px 0;
    transition: color var(--lm-transition);
}

.lm-nav > a:not(.lm-btn)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--lm-orange), var(--lm-orange-light));
    transition: width var(--lm-transition);
}

.lm-nav > a:not(.lm-btn):hover {
    color: var(--lm-white);
}

.lm-nav > a:not(.lm-btn):hover::after {
    width: 100%;
}

.lm-nav > a:not(.lm-btn).is-active {
    color: var(--lm-white);
}

.lm-nav > a:not(.lm-btn).is-active::after {
    width: 100%;
}

.lm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    font-family: inherit;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform var(--lm-transition), box-shadow var(--lm-transition), background var(--lm-transition), border-color var(--lm-transition);
}

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

.lm-btn:active {
    transform: translateY(0);
}

.lm-btn--primary {
    background: linear-gradient(135deg, var(--lm-orange-deep), var(--lm-orange), var(--lm-orange-light));
    background-size: 200% 200%;
    color: var(--lm-white);
    box-shadow: 0 14px 36px var(--lm-orange-glow);
}

.lm-btn--primary:hover {
    background-position: 100% 0;
    box-shadow: 0 18px 44px var(--lm-orange-glow);
}

.lm-btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--lm-gray-100);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.lm-btn--ghost:hover {
    border-color: rgba(242, 101, 34, 0.55);
    color: var(--lm-orange-light);
    background: rgba(242, 101, 34, 0.08);
}

.lm-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lm-white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    position: relative;
    z-index: 111;
    transition: background var(--lm-transition), border-color var(--lm-transition), transform var(--lm-transition);
}

.lm-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--lm-transition), opacity var(--lm-transition);
}

.lm-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.lm-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.lm-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lm-menu-toggle:hover {
    border-color: rgba(242, 101, 34, 0.4);
    background: rgba(242, 101, 34, 0.1);
}

.lm-menu-toggle.is-active {
    border-color: var(--lm-orange);
    background: rgba(242, 101, 34, 0.15);
}

/* ── Hero ── */
.lm-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--lm-header-h) + 48px) 0 72px;
    overflow: hidden;
}

.lm-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lm-hero__bg::before {
    content: "";
    position: absolute;
    width: min(560px, 90vw);
    height: min(560px, 90vw);
    top: -140px;
    left: -100px;
    background: radial-gradient(circle, var(--lm-orange-glow) 0%, transparent 65%);
    animation: lm-glow-pulse 8s ease-in-out infinite;
}

.lm-hero__bg::after {
    content: "";
    position: absolute;
    width: min(440px, 70vw);
    height: min(440px, 70vw);
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
}

.lm-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 18%, transparent 88%);
}

.lm-hero__content {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.lm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(242, 101, 34, 0.1);
    border: 1px solid rgba(242, 101, 34, 0.32);
    color: var(--lm-orange-light);
    font-size: 13px;
    margin-bottom: 24px;
    animation: lm-fade-up 0.7s ease both;
}

.lm-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lm-orange);
    box-shadow: 0 0 14px var(--lm-orange);
    animation: lm-pulse-dot 2s ease infinite;
}

.lm-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(30px, 5.5vw, 54px);
    line-height: 1.22;
    font-weight: 900;
    color: var(--lm-white);
    animation: lm-fade-up 0.7s ease 0.1s both;
}

.lm-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--lm-orange-light), var(--lm-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lm-hero__lead {
    margin: 0 0 36px;
    max-width: 540px;
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 2.05;
    color: var(--lm-gray-500);
    animation: lm-fade-up 0.7s ease 0.2s both;
    text-align: justify;
}

.lm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
    animation: lm-fade-up 0.7s ease 0.25s both;
}

.lm-section__head--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    text-align: right;
}

.lm-section__head--row > div {
    flex: 1;
    min-width: 220px;
}

.lm-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: lm-fade-up 0.7s ease 0.3s both;
}

.lm-stat {
    flex: 1 1 140px;
    min-width: 120px;
    padding: 18px 20px;
    border-radius: var(--lm-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color var(--lm-transition), transform var(--lm-transition), background var(--lm-transition);
}

.lm-stat:hover {
    border-color: rgba(242, 101, 34, 0.28);
    background: rgba(242, 101, 34, 0.05);
    transform: translateY(-2px);
}

.lm-stat strong {
    display: block;
    font-size: clamp(22px, 4vw, 28px);
    color: var(--lm-white);
    margin-bottom: 6px;
    line-height: 1.1;
    text-align: left;
}

.lm-stat span {
    font-size: 12px;
    color: var(--lm-gray-500);
    line-height: 1.5;
}

.lm-hero__visual {
    position: relative;
    animation: lm-fade-up 0.8s ease 0.15s both;
}

.lm-hero__visual::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.12), transparent 60%);
    pointer-events: none;
}

/* ── Hero: Dev showcase ── */
.lm-dev-showcase {
    position: relative;
    min-height: 340px;
    animation: lm-float 7s ease-in-out infinite;
}

.lm-dev-editor {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    background: #0f1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--lm-shadow-soft);
}

.lm-dev-editor__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-dev-editor__dots {
    display: flex;
    gap: 5px;
}

.lm-dev-editor__dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lm-gray-700);
}

.lm-dev-editor__dots i:nth-child(1) { background: #ff5f57; }
.lm-dev-editor__dots i:nth-child(2) { background: #febc2e; }
.lm-dev-editor__dots i:nth-child(3) { background: #28c840; }

.lm-dev-editor__title {
    font-size: 12px;
    color: var(--lm-gray-300);
    font-family: ui-monospace, monospace;
}

.lm-dev-editor__status {
    margin-inline-start: auto;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 11px;
    color: var(--lm-orange-light);
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.25);
    animation: lm-pulse-dot 2.5s ease infinite;
}

.lm-dev-editor__code {
    margin: 0;
    padding: 18px 16px;
    font-size: 12px;
    line-height: 1.85;
    direction: ltr;
    text-align: left;
    color: #b8c0cc;
    font-family: ui-monospace, "Cascadia Code", monospace;
    overflow-x: auto;
}

.lm-dev-editor__code code {
    white-space: pre;
}

.lm-dev-editor__code .c-tag { color: #ff8a4c; }
.lm-dev-editor__code .c-key { color: #7ec8e3; }
.lm-dev-editor__code .c-fn { color: #c792ea; }
.lm-dev-editor__code .c-str { color: #9ccc65; }

.lm-dev-preview {
    position: absolute;
    left: 24px;
    bottom: -8px;
    width: min(72%, 280px);
    z-index: 3;
    border-radius: 14px;
    overflow: hidden;
    background: var(--lm-gray-900);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lm-dev-preview__header {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-dev-preview__header span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lm-gray-700);
}

.lm-dev-preview__header em {
    margin-inline-start: auto;
    font-style: normal;
    font-size: 10px;
    color: var(--lm-gray-500);
}

.lm-dev-preview__body {
    display: flex;
    gap: 8px;
    padding: 12px;
    min-height: 110px;
}

.lm-dev-preview__sidebar {
    width: 28px;
    border-radius: 6px;
    background: rgba(242, 101, 34, 0.15);
    border: 1px solid rgba(242, 101, 34, 0.2);
}

.lm-dev-preview__main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lm-dev-preview__line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    width: 85%;
}

.lm-dev-preview__line--lg { width: 100%; height: 10px; }
.lm-dev-preview__line--sm { width: 55%; }

.lm-dev-preview__cards {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.lm-dev-preview__cards span {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.25), rgba(242, 101, 34, 0.08));
    border: 1px solid rgba(242, 101, 34, 0.2);
}

.lm-dev-chip {
    position: absolute;
    z-index: 4;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lm-gray-100);
    background: rgba(26, 26, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: var(--lm-shadow-soft);
    white-space: nowrap;
}

.lm-dev-chip--1 { top: 12px; left: -8px; animation: lm-chip-float 5s ease-in-out infinite; }
.lm-dev-chip--2 { top: 48%; right: -12px; animation: lm-chip-float 5s ease-in-out 0.8s infinite; }
.lm-dev-chip--3 { bottom: 28px; right: 8px; animation: lm-chip-float 5s ease-in-out 1.6s infinite; }

@keyframes lm-chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Sections ── */
.lm-section {
    padding: clamp(64px, 10vw, 96px) 0;
    scroll-margin-top: var(--lm-header-h);
}

.lm-section--alt {
    background: linear-gradient(180deg, var(--lm-black-soft) 0%, var(--lm-black) 100%);
    border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.lm-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(36px, 6vw, 52px);
}

.lm-section__head h2 {
    position: relative;
    margin: 0 0 14px;
    font-size: clamp(24px, 4.5vw, 38px);
    font-weight: 900;
    color: var(--lm-white);
}

.lm-section__head h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lm-orange), var(--lm-orange-light));
}

.lm-section__head p {
    margin: 0;
    font-size: clamp(14px, 2.2vw, 15px);
    line-height: 2;
    color: var(--lm-gray-500);
}

.lm-portfolio-cta {
    margin: 1.75rem 0 0;
    padding: 0;
    text-align: center;
}

/* ── Portals ── */
.lm-portals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.lm-portal {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 4vw, 34px);
    border-radius: var(--lm-radius);
    background: linear-gradient(155deg, rgba(32, 32, 38, 0.98), rgba(18, 18, 22, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color var(--lm-transition), transform var(--lm-transition), box-shadow var(--lm-transition);
}

.lm-portal::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top right, var(--lm-orange-glow), transparent 68%);
    opacity: 0;
    transition: opacity var(--lm-transition);
}

.lm-portal:hover {
    transform: translateY(-6px);
    box-shadow: var(--lm-shadow-soft);
}

.lm-portal--staff:hover {
    border-color: rgba(242, 101, 34, 0.45);
}

.lm-portal--employer:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.lm-portal:hover::before {
    opacity: 1;
}

.lm-portal__badge {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.lm-portal--staff .lm-portal__badge {
    color: var(--lm-orange-light);
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.28);
}

.lm-portal--employer .lm-portal__badge {
    color: var(--lm-gray-300);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lm-portal__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lm-portal__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.22), rgba(242, 101, 34, 0.06));
    border: 1px solid rgba(242, 101, 34, 0.28);
    color: var(--lm-orange-light);
}

.lm-portal--employer .lm-portal__icon {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--lm-gray-300);
}

.lm-portal__icon svg {
    width: 26px;
    height: 26px;
}

.lm-portal h3 {
    margin: 0 0 4px;
    font-size: clamp(18px, 3vw, 22px);
    color: var(--lm-white);
}

.lm-portal__role {
    margin: 0;
    font-size: 12px;
    color: var(--lm-gray-500);
}

.lm-portal__desc {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--lm-gray-500);
}

.lm-portal__features {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
    align-content: flex-start;
}

.lm-portal__features li {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--lm-gray-300);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lm-portal--staff .lm-portal__features li {
    border-color: rgba(242, 101, 34, 0.15);
}

.lm-portal .lm-btn {
    position: relative;
    z-index: 1;
    align-self: stretch;
    justify-content: center;
}

.lm-btn--arrow::after {
    content: "←";
    font-size: 16px;
    transition: transform var(--lm-transition);
}

.lm-btn--arrow:hover::after {
    transform: translateX(-4px);
}

/* ── Slider ── */
.lm-slider {
    position: relative;
}

.lm-slider__viewport {
    overflow: hidden;
    border-radius: var(--lm-radius);
    direction: ltr;
    touch-action: pan-y;
    cursor: grab;
}

.lm-slider__viewport.is-dragging {
    cursor: grabbing;
}

.lm-slide__body,
.lm-slide__tag {
    direction: rtl;
}

.lm-slider__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lm-slider__track.no-transition {
    transition: none;
}

.lm-slide {
    min-width: 100%;
    padding: 4px;
    user-select: none;
}

.lm-slide__card {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: clamp(20px, 4vw, 36px);
    align-items: center;
    direction: ltr;
    padding: clamp(22px, 4vw, 40px);
    border-radius: var(--lm-radius);
    background: linear-gradient(140deg, var(--lm-gray-900), var(--lm-black-soft));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--lm-shadow-soft);
}

.lm-slide__visual {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    min-height: 220px;
    border-radius: var(--lm-radius-sm);
    background: var(--lm-gray-800);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-slide__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.lm-slide__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.lm-slide__tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    direction: rtl;
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    font-size: 12px;
    color: var(--lm-orange-light);
    border: 1px solid rgba(242, 101, 34, 0.25);
}

.lm-slide__body h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 3.5vw, 28px);
    color: var(--lm-white);
    line-height: 1.35;
}

.lm-slide__body p {
    margin: 0;
    font-size: clamp(14px, 2.2vw, 15px);
    line-height: 2;
    color: var(--lm-gray-500);
}

.lm-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.lm-slide__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    direction: rtl;
    text-align: right;
}

.lm-slide__link {
    margin-top: 20px;
    padding: 11px 22px;
    font-size: 13px;
    box-shadow: 0 10px 28px var(--lm-orange-glow);
}

.lm-slider__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--lm-gray-900);
    color: var(--lm-white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--lm-transition), background var(--lm-transition), transform var(--lm-transition);
}

.lm-slider__btn:hover {
    border-color: var(--lm-orange);
    background: rgba(242, 101, 34, 0.14);
    transform: scale(1.06);
}

.lm-slider__btn:active {
    transform: scale(0.96);
}

.lm-slider__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 12px;
}

.lm-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--lm-gray-700);
    cursor: pointer;
    transition: width var(--lm-transition), background var(--lm-transition);
}

.lm-slider__dot.is-active {
    width: 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lm-orange), var(--lm-orange-light));
}

/* ── Partners slider ── */
.lm-partners-slider {
    --partners-gap: 14px;
    --partners-per-view: 5;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lm-partners-slider__viewport {
    flex: 1;
    overflow: hidden;
    direction: ltr;
    min-height: 132px;
}

.lm-partners-slider__track {
    display: flex;
    align-items: stretch;
    gap: var(--partners-gap);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.lm-partners-slider__track.no-transition {
    transition: none;
}

.lm-partner {
    flex: 0 0 calc((100% - (var(--partners-per-view) - 1) * var(--partners-gap)) / var(--partners-per-view));
    height: 132px;
    box-sizing: border-box;
    border-radius: var(--lm-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 16px 12px;
    direction: rtl;
    transition: border-color var(--lm-transition), background var(--lm-transition), box-shadow var(--lm-transition);
}

.lm-partners-slider__btn {
    width: 44px;
    height: 44px;
    align-self: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--lm-gray-900);
    color: var(--lm-white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--lm-transition), background var(--lm-transition);
}

.lm-partners-slider__btn:hover:not(:disabled) {
    border-color: var(--lm-orange);
    background: rgba(242, 101, 34, 0.14);
}

.lm-partners-slider__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.lm-partner__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity var(--lm-transition);
}

.lm-partner__name {
    width: 100%;
    height: 36px;
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--lm-gray-500);
    line-height: 1.4;
    letter-spacing: -0.01em;
    text-align: center;
    transition: color var(--lm-transition);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -webkit-box-pack: center;
}

.lm-partner:hover {
    border-color: rgba(242, 101, 34, 0.35);
    background: rgba(242, 101, 34, 0.07);
    box-shadow: 0 8px 24px rgba(242, 101, 34, 0.12);
}

.lm-partner:hover .lm-partner__logo {
    opacity: 1;
}

.lm-partner:hover .lm-partner__name {
    color: var(--lm-gray-100);
}

/* ── Footer ── */
.lm-footer {
    padding: 44px 0 max(32px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--lm-black);
}

.lm-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--lm-gray-500);
}

.lm-footer__inner a {
    color: var(--lm-orange-light);
    transition: color var(--lm-transition);
}

.lm-footer__inner a:hover {
    color: var(--lm-white);
}

/* ── Animations ── */
/* ── Contact ── */
.lm-contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.lm-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--lm-radius-sm);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a.lm-contact-card:hover {
    border-color: rgba(242, 101, 34, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.lm-contact-card--urgent {
    border-color: rgba(242, 101, 34, 0.28);
    background: linear-gradient(145deg, rgba(242, 101, 34, 0.1), rgba(255, 255, 255, 0.02));
}

.lm-contact-card--urgent strong {
    color: var(--lm-orange-light);
}

.lm-contact-card--static strong,
.lm-contact-card--static a {
    color: var(--lm-white);
    font-weight: 600;
}

.lm-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.25rem;
    border-radius: 12px;
    color: var(--lm-orange-light);
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.22);
}

.lm-contact-card__label {
    font-size: 0.78rem;
    color: var(--lm-gray-500);
}

.lm-contact-card strong {
    font-size: 0.95rem;
    color: var(--lm-white);
    line-height: 30px;
    text-align: justify;
}

.lm-contact__cta {
    display: flex;
    justify-content: center;
}

.lm-contact__cta--dual {
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

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

@keyframes lm-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lm-glow-pulse {
    0%, 100% { opacity: 0.75; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes lm-pulse-dot {
    0%, 100% { box-shadow: 0 0 10px var(--lm-orange); }
    50% { box-shadow: 0 0 18px var(--lm-orange-light); }
}

@keyframes lm-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes lm-bar-grow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ── Services ── */
.lm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.lm-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 3vw, 28px);
    border-radius: var(--lm-radius);
    background: linear-gradient(155deg, rgba(32, 32, 38, 0.98), rgba(18, 18, 22, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color var(--lm-transition), transform var(--lm-transition), box-shadow var(--lm-transition);
}

.lm-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at top right, var(--lm-orange-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--lm-transition);
}

.lm-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 101, 34, 0.35);
    box-shadow: var(--lm-shadow-soft);
}

.lm-service-card:hover::before {
    opacity: 1;
}

.lm-service-card__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: var(--lm-orange-light);
    background: rgba(242, 101, 34, 0.12);
    border: 1px solid rgba(242, 101, 34, 0.25);
}

.lm-service-card__icon svg {
    width: 26px;
    height: 26px;
}

.lm-service-card__title {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.55;
    color: var(--lm-white);
}

.lm-service-card__list {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lm-service-card__list li {
    position: relative;
    padding: 7px 18px 7px 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--lm-gray-300);
}

.lm-service-card__list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lm-orange);
    box-shadow: 0 0 8px var(--lm-orange-glow);
}

/* ── Team ── */
.lm-team-intro {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(14px, 2.2vw, 16px) !important;
    line-height: 2.1 !important;
    color: var(--lm-gray-300) !important;
}

.lm-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.lm-team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 3.5vw, 32px) 20px;
    border-radius: var(--lm-radius);
    background: linear-gradient(160deg, rgba(28, 28, 34, 0.96), rgba(14, 14, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color var(--lm-transition), transform var(--lm-transition), box-shadow var(--lm-transition);
}

.lm-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lm-shadow-soft);
}

.lm-team-card--lead {
    border-color: rgba(242, 101, 34, 0.35);
    background: linear-gradient(160deg, rgba(42, 28, 22, 0.5), rgba(18, 18, 22, 0.98));
}

.lm-team-card--lead:hover {
    border-color: rgba(242, 101, 34, 0.55);
}

.lm-team-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    color: var(--lm-orange-light);
    background: rgba(242, 101, 34, 0.15);
    border: 1px solid rgba(242, 101, 34, 0.3);
}

.lm-team-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin-bottom: 16px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    color: var(--lm-white);
    background: linear-gradient(135deg, var(--lm-orange), var(--lm-orange-deep));
    box-shadow: 0 10px 28px var(--lm-orange-glow);
    flex-shrink: 0;
    overflow: hidden;
}

.lm-team-card__avatar--photo {
    padding: 0;
    background: var(--lm-gray-800);
    border: 3px solid rgba(242, 101, 34, 0.45);
}

.lm-team-card--lead .lm-team-card__avatar--photo {
    border-color: rgba(242, 101, 34, 0.75);
    box-shadow: 0 10px 32px var(--lm-orange-glow);
}

.lm-team-card__avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.lm-team-card__name {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
    color: var(--lm-white);
}

.lm-team-card__role {
    margin: 0;
    font-size: 13px;
    line-height: 1.85;
    color: var(--lm-gray-500);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .lm-hero__content {
        gap: 40px;
    }

    .lm-nav {
        gap: 14px;
    }

    .lm-nav > a:not(.lm-btn) {
        font-size: 13px;
    }

    .lm-btn--header {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .lm-services-grid,
    .lm-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    :root {
        --lm-header-h: 72px;
    }

    .lm-hero__content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lm-hero__visual {
        max-width: 560px;
        margin-inline: auto;
        width: 100%;
    }

    .lm-dev-showcase {
        display: flex;
        flex-direction: column;
        gap: 14px;
        min-height: auto;
    }

    .lm-dev-preview {
        order: -1;
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin: 0;
    }

    .lm-dev-editor {
        order: 0;
    }

    .lm-dev-preview__header em {
        max-width: none;
    }

    .lm-hero__lead {
        max-width: none;
    }

    .lm-portals {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

    .lm-slide__card {
        grid-template-columns: 1fr;
        justify-items: stretch;
        direction: rtl;
    }

    .lm-slide__visual {
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
        aspect-ratio: 1 / 1;
    }

    .lm-slide__body {
        width: 100%;
    }

    .lm-partners-slider {
        --partners-per-view: 3;
    }

    .lm-contact__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lm-header__inner {
        padding: 10px 0;
    }

    .lm-header.is-scrolled .lm-header__inner {
        padding: 8px 0;
    }

    .lm-brand {
        flex: 1;
        min-width: 0;
    }

    .lm-brand span {
        white-space: normal;
        font-size: clamp(12px, 2.6vw, 15px);
    }

    .lm-nav {
        position: fixed;
        z-index: 110;
        inset: calc(var(--lm-header-h) + 8px) 16px auto;
        left: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px;
        border-radius: var(--lm-radius);
        background: rgba(26, 26, 32, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--lm-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px) scale(0.98);
        transition: opacity var(--lm-transition), visibility var(--lm-transition), transform var(--lm-transition);
    }

    .lm-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .lm-nav > a:not(.lm-btn) {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 15px;
    }

    .lm-nav > a:not(.lm-btn):hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .lm-nav > a:not(.lm-btn)::after {
        display: none;
    }

    .lm-nav .lm-btn {
        width: 100%;
        margin-top: 8px;
        padding: 15px;
    }

    .lm-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --lm-header-h: 80px;
    }

    .lm-contact__grid {
        grid-template-columns: 1fr;
    }

    .lm-contact-card strong,
    .lm-contact-card--static strong {
        overflow-wrap: anywhere;
    }

    .lm-contact__cta--dual .lm-btn {
        width: 100%;
        justify-content: center;
    }

    .lm-services-grid,
    .lm-team-grid {
        grid-template-columns: 1fr;
    }

    .lm-container {
        width: min(1140px, calc(100% - 32px));
    }

    .lm-hero {
        padding-top: calc(var(--lm-header-h) + 32px);
        padding-bottom: 56px;
        min-height: auto;
    }

    .lm-hero h1 {
        text-align: center;
        font-size: clamp(1.15rem, 5vw, 1.75rem);
        line-height: 1.45;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .lm-hero h1 br {
        display: none;
    }

    .lm-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lm-hero__actions .lm-btn {
        width: 100%;
        justify-content: center;
    }

    .lm-dev-showcase {
        animation: none;
    }

    .lm-dev-editor__bar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px 10px;
        align-items: center;
    }

    .lm-dev-editor__dots {
        grid-column: 1;
        grid-row: 1;
    }

    .lm-dev-editor__title {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    .lm-dev-editor__status {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-inline-start: 0;
        justify-self: start;
    }

    .lm-dev-chip--1 { left: 0; }
    .lm-dev-chip--2 { right: 0; }

    .lm-hero__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .lm-stat {
        min-width: 0;
        padding: 14px 12px;
        text-align: center;
    }

    .lm-stat strong {
        font-size: 20px;
    }

    .lm-stat span {
        font-size: 11px;
    }

    .lm-portal .lm-btn {
        width: 100%;
        align-self: stretch;
        justify-content: center;
    }

    .lm-portal__desc {
        margin-bottom: 14px;
    }

    .lm-portal__features {
        margin-bottom: 20px;
    }

    .lm-slide__link {
        width: 100%;
        justify-content: center;
    }

    .lm-partners-slider {
        --partners-per-view: 2;
        --partners-gap: 10px;
        gap: 8px;
    }

    .lm-partners-slider__btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lm-partners-slider__viewport {
        min-height: 120px;
    }

    .lm-partner {
        height: 120px;
        padding: 14px 10px;
        gap: 8px;
    }

    .lm-partner__name {
        min-height: 34px;
        max-height: 34px;
    }

    .lm-partner__logo {
        width: 44px;
        height: 44px;
    }

    .lm-partner__name {
        font-size: 11px;
    }

    .lm-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .lm-footer__inner > span {
        max-width: 100%;
        line-height: 1.75;
    }
}

@media (max-width: 520px) {
    :root {
        --lm-header-h: 88px;
    }

    .lm-partners-slider {
        --partners-per-view: 1;
    }

    .lm-container {
        width: calc(100% - 24px);
    }

    .lm-brand img {
        width: 40px;
        height: 40px;
    }

    .lm-brand span {
        font-size: 13px;
    }

    .lm-dev-preview__header em {
        font-size: 10px;
        line-height: 1.45;
    }

    .lm-hero__stats {
        grid-template-columns: 1fr 1fr;
    }

    .lm-hero__stats .lm-stat:last-child {
        grid-column: 1 / -1;
    }

    .lm-dev-editor__code {
        font-size: 11px;
        padding: 14px 12px;
    }

    .lm-dev-chip {
        font-size: 10px;
        padding: 5px 10px;
    }

    .lm-dev-chip--1 { top: 4px; left: 4px; }
    .lm-dev-chip--2 { top: auto; bottom: 4px; right: 4px; }
    .lm-dev-chip--3 { display: none; }

    .lm-slide {
        padding: 2px;
    }

    .lm-slide__card {
        padding: 18px;
        gap: 16px;
    }

    .lm-slide__visual {
        max-width: 100%;
    }

    .lm-slider__controls {
        gap: 12px;
        margin-top: 22px;
    }

    .lm-slider__btn {
        width: 42px;
        height: 42px;
    }

    .lm-section {
        padding: 56px 0;
    }
}

@media (max-width: 380px) {
    .lm-nav {
        inset: calc(var(--lm-header-h) + 6px) 12px auto;
        left: 12px;
    }

    .lm-hero h1 {
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    }

    .lm-hero__stats {
        grid-template-columns: 1fr;
    }

    .lm-hero__stats .lm-stat:last-child {
        grid-column: auto;
    }
}

/* Scroll to top (home) */
.lm-scroll-top {
    position: fixed;
    z-index: 85;
    inset-inline-end: max(1.1rem, env(safe-area-inset-right, 0px));
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--lm-gray-100);
    background: rgba(18, 18, 22, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.94);
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.lm-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lm-scroll-top:hover {
    color: var(--lm-white);
    border-color: rgba(242, 101, 34, 0.45);
    background: rgba(26, 26, 32, 0.92);
}

.lm-scroll-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.25);
}

@media (max-width: 768px) {
    .lm-scroll-top {
        width: 38px;
        height: 38px;
        inset-inline-end: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .lm-dev-showcase,
    .lm-dev-chip {
        animation: none;
    }

    .lm-scroll-top {
        transition: none;
    }
}
